开发者

How can I use .htaccess to redirect a folder on my website to a folder on another website?

开发者 https://www.devze.com 2023-01-02 10:05 出处:网络
I\'m trying to h开发者_StackOverflowave 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.theotherwe

I'm trying to h开发者_StackOverflowave 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


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

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


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

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

精彩评论

暂无评论...
验证码 换一张
取 消