htaccess forwarding advice?

Discussion in 'Site & Server Administration' started by vwdforum, Feb 27, 2012.

  1. #1
    I've changed one of my websites and would like some address on forwarding via htaccess.

    I the minute people are still coming to my site using old search links, say via this link

    /products.php?q=Help+For+Heroes+Wristband

    What I would like is it to change to

    /?s=Help+For+Heroes+Wristband

    Can anyone help please?

    Thanks Mally
     
    vwdforum, Feb 27, 2012 IP
  2. igotu

    igotu Greenhorn

    Messages:
    33
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    16
    #2
    i will try to find the answer
     
    igotu, Feb 28, 2012 IP
  3. trendint

    trendint Peon

    Messages:
    52
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #3
    
    RewriteCond %{QUERY_STRING} ^q=([^&]+)
    RewriteRule ^products\.php$ /?s=%1 [R=301,L]
    
    Code (markup):
     
    trendint, Feb 28, 2012 IP