Easy ModRewrite question (htaccess)

Discussion in 'Programming' started by lorocreative, May 28, 2008.

  1. #1
    Can somebody help me on this?
    I need a rule who does following:

    www.domain.com/tag/<keyword>
    to
    www.domain.com/index.php?tag=<keyword>
     
    lorocreative, May 28, 2008 IP
  2. richer2004

    richer2004 Guest

    Messages:
    406
    Likes Received:
    15
    Best Answers:
    0
    Trophy Points:
    0
    #2
    RewriteRule ^tag/links.html index.php?tag=links [L]
     
    richer2004, May 28, 2008 IP
  3. wild13

    wild13 Guest

    Messages:
    9
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Here is the correct version:
    RewriteRule ^/?tag/(.+) index.php?tag=$1 [L]
     
    wild13, May 28, 2008 IP