If you're new here and like what you read, please subscribe to my blog feed or sign up for free email updates. Thanks for visiting!
Enter your email address to subscribe:

How to redirect domain.com/index.php to domain.com using .htaccess

No comment - Post a comment (nofollow disabled)

RewriteCond %{THE_REQUEST} ^[^/]*/index\.php [NC]
RewriteRule (.*)index\.php(.*) $1$2 [R,L]

If you want to redirect index.html as well, you can have

RewriteCond %{THE_REQUEST} ^[^/]*/index\.html [NC]
RewriteRule (.*)index\.php(.*) $1$2 [R,L]

Like this post? Please help me pay for my Internet access.
email post

Possibly Related Posts

This post has no comment. Add your own!