Windows Server Redirection

Discussion in 'Site & Server Administration' started by garrylord, Nov 11, 2011.

  1. #1
    HI


    I wanna redirect example.com to www.example.com on windows serverr so ewhat is the code in .htaccess. I have used one htaccess which is ratherly used on linux server but it won't work.
     
    garrylord, Nov 11, 2011 IP
  2. amgadhs

    amgadhs Peon

    Messages:
    32
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    The code is:

    RewriteEngine on
    RewriteCond %{HTTP_HOST} ^example\.com$
    RewriteRule (.*) http://www.example.com/$1 [R=301,L]
     
    amgadhs, Nov 11, 2011 IP