You should be able to use a .htaccess file to automatically drop the "www" from your URL. I'm not sure as I've never had this problem (someone please correct me if Im wrong).
Make a file called ".htaccess".
Insert the following code into the file:
Code:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.example\.com$ [NC]
RewriteRule ^(.*)$ http://example.com/$1 [R=301,L]
(changing example.com to your domain in both lines.)
Upload the .htaccess file to your root directory.
Hopefully that will catch any visitors who do include the www in the domain. If another user could confirm this that would be great
Last edited by downliner : 08-21-2007 at 11:31 PM.
Reason: font tag roolz
|