Turn off URL canonicalization when routing a request through HTTPD's reverse proxy.

git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1052434 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
jsdelfino 2010-12-24 02:54:51 +00:00
parent f5f3443357
commit 8b3a6ecfaa

View file

@ -112,6 +112,7 @@ int translateReference(const ServerConf& sc, request_rec *r) {
debug(r->filename, "modwiring::translateReference::filename");
r->proxyreq = PROXYREQ_REVERSE;
r->handler = "proxy-server";
apr_table_setn(r->notes, "proxy-nocanon", "1");
return OK;
}