Redirection with regular expression
-
I have a requirement of redirecting via regular expressions something like below
abc.com/menu/123
abc.com/menu/xyzSo here the pattern is anything that goes after /menu/ we need to redirect to some other page. How can we regular expression here ? Tried out following
/menu/*
/menu/(.*)None of the above worked, is it possible to redirect for the requirement that we have ?
- The topic ‘Redirection with regular expression’ is closed to new replies.