Status
Not open for further replies.
5 comments
Code:
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www.domain.com$ [NC]
RewriteRule ^(.*)$ http://www.domain.com/$1 [R=301,QSA,L]

put that in your htaccess
 
Try this:

Code:
RewriteEngine on

Options FollowSymlinks

rewritecond %{http_host} ^domain.com [nc]

rewriterule ^(.*)$ http://www.domain.com/$1 [r=301,nc]
 
Status
Not open for further replies.
Back
Top