I am currently rewriting a URL, however my RegEx expression is catching a directory I want to be ignored.
The rewrite rule is
^people/([A-Za-z0-9\-\_]+)/?$
...Which catches everything that matches. However, I would like to exclude a directory, People_Search, so for instance...
/people/John_Smith
...will forward, but
/people/People_Search
...should not suppose to be.
That's the only term I want to look for, so if it exists anywhere in the string, I want to ignore it.
Any ideas?