If you are on an Apache Server you can redirect the Non-WWW version of your site to the WWW version with this code in your .htaccess file:
Code:RewriteEngine on RewriteCond %{HTTP_HOST} !^www\.yourdomain\.com [NC] RewriteRule ^(.*) http://www.yourdomain.com/$1 [L,R=301]

Reply With Quote
