HowTo: redirect from domain.com to www.domain.com
If you are interested in having all your site users be redirected from domain.com to www.domain.com (add the 'www' to the site's URL) here is how:Simply create a text file named .htaccess file with the following lines:
RewriteEngine on
RewriteCond %{HTTP_HOST} !^www
RewriteRule (.*) http://www.%{HTTP_HOST}/$1 [L,R]Upload the .htaccess to the root (top directory) of your HTML folder and you're set.
Posted by Sam Brown on 20 June 2006



