www.domain.com vs domain.com

chhhad

Junior Member
Joined
Feb 7, 2011
Messages
195
Reaction score
27
I have several websites and when you type in domain.com it automatically changes to www.domain.com but suddenly some of my new domains don't do that, they stay domain.com

Any idea why or how to change it? I want them to be www.domain.com no matter which way you type it.
 
Anyone? Godaddy didn't know...
 
301 redirect using .htaccess (apache).
i can't post urls yet, so I couldn't post my example.

but it should be easy to find online.
 
Code:
 RewriteEngine On      
      RewriteCond %{HTTP_HOST} ^example\.com
      RewriteRule (.*) http://www.example.com/$1 [R=301,L]

Add this to your .htaccess
Don't forget to replace example.com with your domain name.
 
Back
Top