301 Redirect

Discussion in 'Website, Graphic Design & SEO' started by naturalsolar, Dec 4, 2009.

  1. naturalsolar amatuer web guru!

  2. Mark Voss CSNM Customer

    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]

Share This Page