Forum Moderators: phranque
I can view my site fine in IE - but was wondering if something in my .htaccess file was wrong. Google also doesn't seem to want to index it (though it appears on Yahoo).
My .htaccess is:
# Version: 07 November 2005 21:14
RewriteEngine on
Options +FollowSymlinks
RewriteBase /
rewritecond %{HTTP_HOST} ^(.*).net(.*)$
rewriteRule ^(.*)$ [MYDOMAIN.com...] [R=301,L]
rewritecond %{HTTP_HOST} ^(.*).co.uk(.*)$
rewriteRule ^(.*)$ [MYDOMAIN.com...] [R=301,L]
RewriteCond %{HTTP_HOST}!^www\.*
RewriteRule (.*) [%{HTTP_HOST}...] [R=301,L]
RewriteCond %{REQUEST_URI} ^/[^\.]+[^/]$
RewriteRule ^(.*)$ [%{HTTP_HOST}...] [R=301,L]
RewriteRule ^([^.]+)\.htm$ $1.php [NC,L]
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /([^.]+)\.php [NC]
RewriteRule \.php %1.htm [NC,R=301,L]
Is this file ok? Thanks
It looks to me like you could accomplish what you need with far simpler code, but I'd recommend that you resolve the 403 error before changing it.
If you need another headers checker to try, here's ours [webmasterworld.com].
Jim