View Single Post
Old 08-09-2013, 02:45 AM  
kane
Too lazy to set a custom title
 
kane's Avatar
 
Join Date: Aug 2001
Location: portland, OR
Posts: 20,684
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.

Last edited by kane; 08-09-2013 at 02:48 AM..
kane is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote