Mod_rewrite HELP!!!!

Discussion in 'Apache' started by MikeSwede, Jul 28, 2006.

  1. #1
    I have this subdomain:
    states.domain.com
    in this subdomain I have folders for the states:
    states.domain.com/StateName

    I want to redirect all of it to:
    www.domain.com/search/StateName/

    Can't get it right so I need help!!
     
    MikeSwede, Jul 28, 2006 IP
  2. Nintendo

    Nintendo ♬ King of da Wackos ♬

    Messages:
    12,890
    Likes Received:
    1,064
    Best Answers:
    0
    Trophy Points:
    430
    #2
    At states.domain.com/.htaccess

    Options +Indexes
    Options +FollowSymlinks
    RewriteEngine on
    RewriteBase /
    RewriteRule ^([^.]+)$ http://www.domain.com/search/$1/ [R=301,L]
     
    Nintendo, Jul 28, 2006 IP