.htaccess Redirects -


How do I set up the .htaccess file to redirect requests to another folder on another domain? I do not want to break the link, I just want them to go somewhere else. Say mysite.com/image.jpg will be redirected to site2.com/images/image.jpg.

.htaccess (at least in Apache):

  Rewrite / rewrite rule on riverbase ^ images /(.*)$ http://www.yahoo.com/blah/$1 [R = 302], L]  

Comments