Using Google sitemap to make www.yourdomain.com is useul only for Google.What bout other search engines? Using htaccess is the best solution. The above code redirect all request to non www pages to the homepage. It should be RewriteEngine On RewriteCond %{HTTP_HOST} ^thewebmasterstool.com RewriteRule (.*) http://www.thewebmasterstool.com\1 [R=301,L] Code (markup): A more general solution will be RewriteEngine on RewriteCond %{HTTP_HOST} !^www [NC] RewriteRule (.*) http://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,NC,L] Code (markup): This works for subdomains too.