$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>Redirect loop with similar URLs|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

Redirect loop with similar URLs

matteradmin7PV0评论

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

Articles related to this article

Post a comment

comment list (0)

  1. No comments so far