Вопрос

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