Forum Moderators: phranque
I currently have this code in my .htaccess
RewriteCond %{THE_REQUEST} /index\.php\ HTTP/
RewriteRule ^index\.php$ / [R=301,L]
This redirects my "/index.php" to " / "
http://www.example.com/index.php "TO"
http://www.example.com/
But I also want to redirect "/index.php/" to " / "
http://www.example.com/index.php/
http://www.example.com/
Please advise