.htaccess help

sparky5693

Active member
I'm looking to remove the www's... In my root folder, my .htaccess looks like this:
Code:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^theshaveden.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.theshaveden.com$
RewriteRule ^/?$ "http\:\/\/www\.theshaveden\.com\/forums\/portal" [R=301,L]

Yet this deeper link isn't changed. Can you guys give me some tips on what i'm doing wrong?
http://www.theshaveden.com/forums/forums/the-medicine-cabinet.55/
 
Fixed. Funny how you don't see the obvious until you start working on the problem. We were checking the HTTP_HOST for the directory name. :confused:

Rich (BB code):
    RewriteCond %{HTTP_HOST} ^www.theshaveden.com/forums$ [NC]
    RewriteRule ^(.*)$ http://theshaveden.com/forums/$1 [R=301,L]

I removed the red part and that fixed it.
 
Top Bottom