From: Ian Holsman Date: Sat, 17 Nov 2001 22:01:32 +0000 (+0000) Subject: ProxyPass wasn't sending the right URL through to the backend server X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2e770f04cb9941581749348a968799e70260abb9;p=apache ProxyPass wasn't sending the right URL through to the backend server git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92021 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/mod_proxy.c b/modules/proxy/mod_proxy.c index 94270aae1f..adb13c6dbd 100644 --- a/modules/proxy/mod_proxy.c +++ b/modules/proxy/mod_proxy.c @@ -189,7 +189,7 @@ static int proxy_trans(request_rec *r) if (len > 0) { r->filename = apr_pstrcat(r->pool, "proxy:", ent[i].real, - (r->uri + len - 1), NULL); + (r->uri + len ), NULL); r->handler = "proxy-server"; r->proxyreq = PROXYREQ_REVERSE; return OK;