Need help with site redirects

Hello,



How do I redirects my site to www? I want to change it on my cart.



Thank you

Tom

In the .htaccess file in root of css cart add the below


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




Replace domain.com with your site’s domain.

[quote name=‘whiplash13’]In the .htaccess file in root of css cart add the below


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




Replace domain.com with your site’s domain.[/QUOTE]



Thank you

Check my original post. I made a mistake and gave you code to remove the www all the time. It’s now updated to add it.