문제

I want to move some folders on my server and adjust the path with htaccess. Found a lot of questions like this on stackoverflow but I don't dare to transfer this answers.

I have a folder www.bla.com/xinha/plugins/ImageManager/demo_images/

I want to move the folder and its whole content to www.bla.com/images/xy/

How could I do this with htaccess?

Perhaps one could quickly help me out - thanks!

도움이 되었습니까?

해결책

You can place this rule in your root .htaccess:

RedirectMatch 301 ^/xinha/plugins/ImageManager/demo_images/(.+)$ /images/xy/$1
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top