redirect http.domain.com tohttp:// www.domain.com

Discussion in 'Site & Server Administration' started by sudhirrawat, Jul 3, 2011.

  1. #1
    I want to know how to redirect http.domain.com tohttp:// www.domain.com

    I am using windows hosting usinf parallels plesk panel 9.5.4
     
    sudhirrawat, Jul 3, 2011 IP
  2. abhi10kumar

    abhi10kumar Greenhorn

    Messages:
    15
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    11
    #2
    You need to write following statements into .htaccess file

    Options +FollowSymLinks
    Options +Indexes
    RewriteEngine on
    RewriteCond %{HTTP_HOST} ^domain\.com$ [NC]
    RewriteRule ^(.*)$ http://www.domain.com/$1 [R=301,L]
     
    abhi10kumar, Jul 4, 2011 IP
  3. sudhirrawat

    sudhirrawat Active Member

    Messages:
    64
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    61
    #3
    i have created a new .htaccess file and uploaded it but its not working
     
    sudhirrawat, Jul 4, 2011 IP
  4. тнє Sufi

    тнє Sufi Peon

    Messages:
    391
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Use this two lines in your .htaccess
    
    RewriteCond %{HTTP_HOST} ^domain\.com$ [NC]
    RewriteRule ^(.*)$ http://www.domain.com/$1 [R=301,L]
    
    PHP:
     
    тнє Sufi, Jul 8, 2011 IP