Htacess rewrite - 301

Discussion in 'Apache' started by wilyjose, Feb 25, 2013.

  1. #1
    How to I rewrite this in .htacess
    www.mysite.com/Itags/xxxxx

    to

    www.mysite.com/tag/xxxx

    This will be a permanent redirect.
     
    wilyjose, Feb 25, 2013 IP
  2. KaidoR

    KaidoR Active Member

    Messages:
    184
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    55
    #2
    Like this

    RewriteEngine on
    Redirect 301 /Itags/xxxxx http://www.mysite.com/tag/xxxx
     
    KaidoR, Feb 25, 2013 IP