admin管理员组

文章数量:1130349

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

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

本文标签: Redirect loop with similar URLs