How do I use this simple wildcard?
-
I have lots of old URLs that include URL parameters like this
/details.php?Pin=1234
that I want to redirect under one rule to the following url/readers/1234/
. How can I do this using a regular expression?So far, I’ve got this but it’s not doing anything:
Source:
/details.php?Pin=(.*)
Target:/readers/$1/
RegEx ONAny ideas?
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘How do I use this simple wildcard?’ is closed to new replies.