Redirect non-WWW domain to WWW

Discussion in 'Site & Server Administration' started by jawadk, Jun 17, 2009.

  1. #1
    Hello, can anyone tell me how to redirect my non-www domain to www domain, for example if a user typ http://domain.com it should automatically redirect to http://www.domain.com

    any help is appreciated
     
    jawadk, Jun 17, 2009 IP
  2. ven

    ven Member

    Messages:
    14
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    36
    #2
    .htaccess
    
    RewriteEngine On
    RewriteBase /
    RewriteCond %{HTTP_HOST} !^www.domainhere.com$ [NC]
    RewriteRule ^(.*)$ http://www.domainhere.com/$1 [L,R=301]
    
    Code (markup):
    Replace domainhere.com with your domain name.
     
    ven, Jun 17, 2009 IP