htacces redirect

Discussion in 'Programming' started by jinch, Jan 22, 2015.

  1. #1
    Hello,

    I want to redirect all the file who start with an a on my site to an other site, would this code work?

    Redirect /a$ www.newsite.com

    Thanks for your help!
    Best regards,
     
    jinch, Jan 22, 2015 IP
  2. Equaite

    Equaite Active Member

    Messages:
    128
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    75
    Digital Goods:
    1
    #2
    Make sure you enable mod_rewrite
    
    RewriteEngine on
    RewriteRule ^([a]{1,1}.*?)$ http://www.newsite.com/$1 [R=301,L]
    
    Code (markup):
     
    Equaite, Jan 25, 2015 IP