PDA

View Full Version : .htaccess redirect no-www to www


rockinaway
03-22-2009, 03:46 PM
At the moment in my htaccess file I have:

RewriteCond %{HTTP_HOST} ^adminfuel\.com [nc]
RewriteRule ^(.*)$ http://www.adminfuel.com/$1 [r=301,nc]


However, when you go to adminfuel.com , it doesn't redirect to the www. version. I want ALL links without the www to redirect to the www form.

cad2go
03-22-2009, 03:51 PM
try

RewriteEngine On
RewriteCond %{HTTP_HOST} ^adminfuel.com
RewriteRule (.*) http://www.adminfuel/$1 [R=301,L]

rockinaway
03-22-2009, 04:57 PM
I had rewriteengine, but the other changes fixed it :)