Quote:
Originally Posted by TheDA
I've never come across that scenario before, but then again I've never looked.
So 301 the index.php to the bare root ( http://www.domain.com/) that what you mean? In .htaccess?
|
Something like this should do the trick:
Code:
RewriteEngine on
RewriteBase /
RewriteRule ^index\.(htm|html|php) http://www.yourdomain.com/ [R=301,L]
Of course, you'll need mod_rewrite enabled.