Thursday, December 6, 2012

Redirect from naked domain to www subdomain

This is often done for SEO.  Rather than having the naked domain and www subdomain, simply do a 301 redirect from naked to www subdomain.

Substitute example.com with your domain below.

<IfModule mod_rewrite.c>
RewriteEngine On
### re-direct to www
RewriteCond %{HTTP_HOST} ^example.com
RewriteRule (.*) http://www.example.com/$1 [R=301,L]
</IfModule>
view raw gistfile1.txt hosted with ❤ by GitHub

No comments:

Post a Comment