Hello, I read today that creating a 301 redirect between http://mysite.com and http://www.mysite.com would help search engines to see both as the same website. Is this true? Can I do it through Helm? If so does anyone know how to do it? Thank you http://www.agric.co.uk http://www.natural-solar.co.uk :thumbup1:
You can't do it using Helm. The easiest way is to pay £10 to have ISAPI_Rewrite enabled for the domain and then drop a small .htaccess file in the root folder: Code: RewriteEngine on RewriteCond %{HTTPS} (on)? RewriteCond %{HTTP:Host} ^(?!www\.)(.+)$ [NC] RewriteCond %{REQUEST_URI} (.+) RewriteRule .? http(?%1s)://www.%2%3 [R=301,L]