url rewrite problem

Discussion in 'Apache' started by dizyn, Jun 7, 2006.

  1. #1
    i want to rewrite all requests of http://dizyn.com to http://www.dizyn.com
    i am new to url-rewrite can any one help me.

    thanks much.
     
    dizyn, Jun 7, 2006 IP
  2. Nintendo

    Nintendo ♬ King of da Wackos ♬

    Messages:
    12,890
    Likes Received:
    1,064
    Best Answers:
    0
    Trophy Points:
    430
    #2
    Options +Indexes
    Options +FollowSymlinks
    RewriteEngine on
    RewriteBase /
    RewriteCond %{HTTP_HOST} !^www.DOMAIN\.com
    RewriteRule (.*) http://www.DOMAIN.com/$1 [R=301,L]
     
    Nintendo, Jun 7, 2006 IP