DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=29554>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://issues.apache.org/bugzilla/show_bug.cgi?id=29554 ProxyPass mishandles escaped characters : and / ------- Additional Comments From [EMAIL PROTECTED] 2004-07-29 11:43 ------- This is not exactly the same problem, but it can be related. I've setup the following conf : ProxyPass /info/ http://internal:8888/info.asp? The problem is that "?" is replaced by a "%3F", like in this example : "http://website.com/info/param" --> "http://internal:8888/info.asp%3Fparam" If I replace the previous conf, with the following one, I get the correct request. RewriteRule ^/info/(.*) http://internal:8888/info.asp?$1 [P] "http://website.com/info/param" -> "http://internal:8888/info.asp?param" Is this a normal behaviour ? --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
