Re: mod_proxy_html and special characters

2018-05-28 Thread Nick Kew
>> ctx->buf = http://internal/!%22%23$/ >> m->from.c = http://internal/!"#$/ A further thought arising from that. Just as strcasecmp is case-independent, the world could no doubt use a standard library function that would treat the above as equal. Something like int stringcmp(const char *a,

Re: mod_proxy_html and special characters

2018-05-28 Thread Nick Kew
> On 28 May 2018, at 08:50, Micha Lenk wrote: > > The reason I am asking this is, because for Location matching, Apache httpd > apparently does map a request with a URL encoded path to the non-encoded > configured path. For example, if I have configured in a virtual host:

Re: mod_proxy_html and special characters

2018-05-28 Thread Micha Lenk
Hi Eric, On 05/25/2018 06:57 PM, Eric Covener wrote: http://internal/!%22%23$/;>A link with special characters >> ProxyHTMLURLMap "http://internal/!\"#$/; "http://external/!\"#$/; Is it reasonable to expect mod_proxy_html to rewrite URL encoded URLs as well? > IMO no, I don't think the