Problems, need help? Have a tip or advice? Post it here.
6 posts Page 1 of 1
FireShot Capture 044 - Admin Panel - paologallery.com.png
FireShot Capture 044 - Admin Panel - paologallery.com.png (12.54 KiB) Viewed 1016 times
Hi,

I try to redirect whatever point under a folder, pages existing or not, to the folder root - the k_is_list - page.

I tried few like
Code: Select all
^/art-reproduction/dali(/|$)(.*)

to
Code: Select all
/art-reproduction/dali$1$2


but with little success.

I am not versed in redirection, is anybody is, that could help me, please?

Thank you,
Paolo
Hi Paolo,

Could you please post a couple of *actual* full 'source' => 'target' URLs?
Will make it easier for us to try and figure out what needs to be done.

Thanks.
Hi KK,

Sure, sorry about that, it wasn't explicit enough, of course.

Let's say I have a Basquiat folder on my paintings' website.

https://paologallery.com/art-reproduction/basquiat/

Now I need every link under that folder, let's say

https://paologallery.com/art-reproduction/basquiat/basquiat-big-snow-1984.html

or anything that is under the folder, even the 404 pages (if the page was moved).

Like:
https://paologallery.com/art-reproduction/basquiat/not-a-page-but-still.html

to redirect to the k_is_list page, or folder root - even if a page was deleted.

I can redirect to a page, easy. But when I redirect to the folder root, it starts to loop.

You see what i mean?
You see what i mean?
Yes, I do now. Thanks Paolo.

I haven't actually tested out the following but, I think, it should work.
For applying the redirection to only the pages under a folder named 'basquiat' -
Code: Select all
URI:     ^/art-reproduction/basquiat/.*\.html$ 
TO:      /art-reproduction/basquiat/

If, however, you wish to apply this to all folders of art-reproduction, following rules should cover it -
Code: Select all
URI:     ^/art-reproduction/(.*)/.*\.html$
TO:      /art-reproduction/$1/

Please test and let me know if this helps.
And it works!

Thank you very much
You are welcome :)
6 posts Page 1 of 1