search
top

Set rewrite rules so your domain always includes www

Add the following to your .htaccess file:

<IfModule mod_rewrite.c>
	RewriteEngine On
	RewriteCond %{http_host} ^yourdomain.com [NC]
	RewriteRule ^(.*)$ http://www.yourdomain.com/$1 [L,R=301]
</IfModule>

top