Regex issue in rewriter config
- by sgbinks
I'm having an issue with bad requests from certain search parameters.
An example URL:
http://www.foo.com/washington/forums/search/%26
Results in a bad request.
The rewriter config line looks like this:
<rewrite url="^(.*)/forums/search/(.*)" to="~/Pages/Forums/Overview.aspx?Address=$1&q=$2" processing="stop" />
I'm thinking it's an issue with the Regex...?
Thanks in advance!