301 redirect help

Discussion in 'Apache' started by wkdchris, Nov 6, 2012.

  1. #1
    I need help with the correct 301 redirect for the following please-

    From-
    [COLOR=#282828][FONT=helvetica]URL/forums/tags/bbc.html[/FONT][/COLOR]
    
    Code (markup):
    to-
    [COLOR=#282828][FONT=helvetica]URL/forums/tags/forums/bbc/[/FONT][/COLOR]
    
    Code (markup):
    Obviously the end bbc.html could change depending on the tag being searched.

    does anyone know the code to enter in the .htaccess file to do this. ?

    thanks
    chris
     
    Solved! View solution.
    wkdchris, Nov 6, 2012 IP
  2. #2
    
    RewriteEngine On
    RewriteBase /
    
    RewriteRule ^forums/tags/([^/]+).html$ /forums/tags/forums/$1/ [R=301,L]
    
    Code (markup):
    Place the above code into your .htaccess file in main html folder, and that's it. If you already have some rewrite rules in your .htaccess file then just skip the first two lines of my code and paste the third line.

    Cheers.
     
    pr0t0n, Nov 8, 2012 IP
  3. wkdchris

    wkdchris Peon

    Messages:
    3
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    That did the trick thanks.
     
    wkdchris, Nov 8, 2012 IP