Quantcast
Viewing all articles
Browse latest Browse all 42

How do I remove index.php from my URLs?

To remove index.php from the URL, and to redirect the visitor to the non-index.php version of the page RewriteBase / RewriteCond %{THE_REQUEST} ^GET.*index\.php [NC] RewriteRule (.*?)index\.php/*(.*) /$1$2 [R=301,NE,L] This will cleanly redirect /index.php/myblog to simply /myblog. Using a 301 redirect

The post How do I remove index.php from my URLs? appeared first on PHP Blog Spot.


Viewing all articles
Browse latest Browse all 42

Trending Articles