Domanda

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!

È stato utile?

Soluzione

You can place this rule in your root .htaccess:

RedirectMatch 301 ^/xinha/plugins/ImageManager/demo_images/(.+)$ /images/xy/$1
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top