You might try setting your htaccess file to rewrite so that it forces everything to use www.
I think this will look like:
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^domain\.com$ [NC]
RewriteRule ^(.*)$ http://www.domain.com/$1 [R=301,L]
I'm not sure if that will solve your problem, but whenever someone types in anything on your domain without the www it will automatically take them to the www version.
|