
Originally Posted by
~ServerPoint~
Hmm... Maybe it worth to look at that with your web hosting provider. I believe that can help
Nope! See below.
Avanti-SEO,
The problem was with your mod_rewrite (which was the reason I moved your post to the Aache forum):
Code:
RewriteEngine on
RewriteCond %{REQUEST_URI} !^/ncr/
# that / will ONLY allow a match on Apache 1.x servers
# if you're hosted on Apache 2.x, delete, otherwise, change the / to /?
RewriteCond %{HTTP_HOST} northwoodcomputerrepairs\.co\.uk$ [NC,OR]
# escape the dot characters when you want to match ONLY the dot character
# domains (the {HTTP_HOST} variable) are case INsensitive so
# you really NEED the No Case flag
RewriteCond %{HTTP_HOST} ^www\.northwoodcomputerrepairs\.co\.uk$ [NC]
# Ditto
# ... or just combine them with ...
# RewriteCond %{HTTP_HOST} ^(www\.)?northwoodcomputerrepairs\.co\.uk$ [NC]
RewriteRule ^(.*)$ ncr/$1 [L]
# which would "optimized" by using ...
# RewriteRule .? ncr%{REQUEST_URI} [L]
Regards,
DK
Bookmarks