redirecting to www

Discussion in 'Site & Server Administration' started by banana8, May 28, 2009.

  1. #1
    hi guys,

    i'd like to redirect my website from the base domain (i.e mydomain.com) to the www address.
    my website is hosted on godaaddy. does any one knows how to do that ?

    thanks a lot !
     
    banana8, May 28, 2009 IP
  2. Jalpari

    Jalpari Notable Member

    Messages:
    5,640
    Likes Received:
    137
    Best Answers:
    0
    Trophy Points:
    260
    #2
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{HTTP_HOST} !^www\.domain\.com [NC]
    RewriteRule ^(.*)$ http://www.domain.com/$1 [L,R=301]
    </IfModule>
     
    Jalpari, May 31, 2009 IP