Ok, following on from my earlier thread I am still trying to redirect all my pages to an index.html.
I have several hundred pages to direct
The pages are a mixture of .php and .html
I have no other code in my .htaccess file
These are the peices of code I have tried along with the error message and problem:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^sub.old-domain.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.old-domain.com$
RewriteRule ^(.*)$
http://www.domain.com/ [R=301,L]
This didn't seem to do anything at all, none of the pages redirected. I tried several different browsers to test it.
RewriteEngine On
RewriteRule (.*)
http://www.domain.com
With this I recieve an internal server error on all my pages.
redirect 301 /
http://www.domain.com/index.html
This one gives a strange error, something along the lines of 'could not open domain.com/bigboobs.htmlhtmlhtmlhtmlhtmlhtmlhtmlhtmlhtmlhtmlh tmlhtmlhtmlhtmlhtmlhtml
RewriteRule .* index.html [QSA,L]
This doesn't seem to do anything either, again I checked it in different browsers but the pages don't redirect.
Come on you GFY gurus what's the problem here. I bet it's one line of code, something really simple but I don't know it and need help.