Hello,
I am trying to pass a URL through ARR that includes %3F. When this passes through ARR, it is encoded into a question mark. This is expected behavior of URL encoding (percentage encoding). However, this is breaking our URL for our web server (Apache).
We have to use this URL because the web pages are a wiki and the wiki pages are automatically generated from content that can contain question marks.
When ARR encodes the %3F into a question mark, it makes Apache think that the query string is starting at the %3F which breaks the URL.
Can anyone tell me how to force ARR to simply pass the entire URL onto Apache *without* any kind of URL/Percentage encoding?
Thanks!