Fixed a bug in the request processor, when URL is /%3F
The problem was that /%3F corresponds to a URL which is literally '/?' (question mar…
Show more
Fixed a bug in the request processor, when URL is /%3FThe problem was that /%3F corresponds to a URL which is literally '/?'(question mark is not the separator for query variables). In this casea "string match" operation to determine the suffix based on thisstring will lead to unexpected characters since '?' is a matchcharacter. This lead in turn to a problem with redirects to theinternally redirect of custom error pages. So, in this case (andprobably others) the custom error page was not displayed.
Show less