We've been trying to build some slightly more advanced regex expressions to do content switching with.
So we can get this basic rule to work
^/wx$ to grab something directed straight at /wx
and this
^/wx/*$ to grab everything /wx/whatever
But we don't want to get anything what would be either not exactly /wx or /wx/something so for instance if there was wxstuff it would not redirect.
Can I do this in a single rule, we've been working with standard regex and are unable to get it to behave.
Would be interested if anyone would have some more advanced rules they'd be willing to share.