Redirect loop with similar URLs

admin2025-06-06  8

I want to redirect a page that ends in mysite/fall to mysite/fall-2019

I've renamed the original page permalink of mysite/fall to mysite/fall-old and to a 301 in the .htaccess that reads...

RedirectMatch 301 /fall 

It redirects to the link by then the page says there is a redirection loop. I assume because that redirect is reading the /fall part from the new URL still. How can I make the redirect exclusive to that page?

I want to redirect a page that ends in mysite/fall to mysite/fall-2019

I've renamed the original page permalink of mysite/fall to mysite/fall-old and to a 301 in the .htaccess that reads...

RedirectMatch 301 /fall http://kadampafestivals/fall-2019

It redirects to the link by then the page says there is a redirection loop. I assume because that redirect is reading the /fall part from the new URL still. How can I make the redirect exclusive to that page?

Share Improve this question edited Nov 20, 2018 at 11:05 kero 6,3501 gold badge25 silver badges34 bronze badges asked Nov 20, 2018 at 11:03 snowliondevsnowliondev 631 silver badge4 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 1

RedirectMatch is very helpful if you want to redirect according to regular expression or similar. This is not needed here, and could be the very reason of your problem. Try the following instead

Redirect 301    /fall    /fall-2019
转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1749166787a316925.html

最新回复(0)