mod rewrite - .htaccess redirect to url with trailing slash -
please me redirect in .htaccess
need redirect url trailing slash
www.example.cz/about--> www.example.cz/about/
www.example.cz/index.php?path=about --> www.example.cz/about/
and last
www.example.cz/index.php --> www.example.cz
#my .htaccess <filesmatch "\.phtml$"> order deny,allow deny </filesmatch> errordocument 404 /404/ rewriteengine on rewritebase / rewritecond %{http_host} ^example.cz$ rewriterule (.*) http://www.example.cz/$1 [r=301,qsa,l] rewritecond %{request_filename} !-d rewritecond %{request_filename} !-f rewriterule ^(.*)$ index.php?path=$1 [l,qsa]
i solved trailing slash , index.php duplicates :)
<filesmatch "\.phtml$"> order deny,allow deny </filesmatch> errordocument 404 /404/ rewriteengine on rewritebase / rewritecond %{http_host} ^example\.cz$ rewriterule (.*) http://www.example.cz/$1 [r=301,l] rewriterule ^index.php$ http://example.cz/$1 [r=301,l] rewritecond %{request_filename} !-f rewritecond %{request_filename} !-d rewriterule ^(.*)/$ /?path=$1 [l,qsa] rewritecond %{request_filename} !-f rewritecond %{request_uri} !(.*)/$ rewriterule ^(.*)$ http://%{http_host}/$1/ [l,r=301]
now .htaccess doing
www.example.cz/index.php --> www.example.cz/ www.example.cz/about--> www.example.cz/about/ example.cz --> www.example.cz
next, need solve
www.example.cz/?path=about--> www.example.cz/about/ www.example.cz/about/ --> wwww.example.cz
Comments
Post a Comment