tags:

views:

20

answers:

2

I'm trying to have everything in this folder on my website - http://www.mywebsite.com/media/images/* redirect to another website with the same structure i.e. http://www.theotherwebsite.com/XXX/media/images/* using .htaccess

A: 

Okay... managed to figure this one out...

RewriteRule ^media/images/(.*)$ http://www.theotherwbsite.com/XXX/media/images/$1 [L]
David Kobia
A: 

Even simpler, it can be accomplished by Redirect alone, no need to use Rewrite.

Redirect permanent /media/images http://foobar.com/new/location
Danny