Question

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!

Était-ce utile?

La solution

You can place this rule in your root .htaccess:

RedirectMatch 301 ^/xinha/plugins/ImageManager/demo_images/(.+)$ /images/xy/$1
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top