Hey,
I am trying to rewrite urls which have the + character in them to a given url.
For example, urls might look like
domain.com/ABC+DEF+ACE+1/
domain.com/GBGAD+ASDAH+6/
domain.com/GBGAD+AHBCGD/
I want to rewrite them to:
domain.com/redirect.php?string=[the string]
(e.g. domain.com/redirect.php?string=ABC+DEF+ACE+1)
I have other rewrite rules for other 'sub' directories etc, but ONLY these will have the + sign in them, so I'm hoping I can write a rule which makes use to something like ([A-Za-z0-9-.]+) BUT also has a check at at least one + sign exists in the url.
I hope this makes sense,
Thanks in advance
Rob