What if multiple redirects matches a given URL?
-
Hi,
If I add two redirect:
1. Redirect ^/([a-z])/faq.htm to /$1/
2. Redirect ^/([a-z])/([a-z])\.htm to /$1-$2/Then what will happens with https://www.example.com/myproduct/faq.htm? It will match both redirects.
Currently I assume it will match the one with the highest prority(smallest position). Is that correct?
More quetions:
1. If the two redirects are in two different groups, how to know their prority related to each other?
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘What if multiple redirects matches a given URL?’ is closed to new replies.