[Remove entries to the current 2.0 section below, when backported]
+ *) mod_rewrite no longer turns forward proxy requests into reverse proxy
+ requests. PR 28125 [ast domdv.de, André Malo]
+
*) mod_rewrite now officially supports RewriteRules in <Proxy> sections.
PR 27985. [André Malo]
}
/* now make sure the request gets handled by the proxy handler */
- r->proxyreq = PROXYREQ_REVERSE;
+ if (PROXYREQ_NONE == r->proxyreq) {
+ r->proxyreq = PROXYREQ_REVERSE;
+ }
r->handler = "proxy-server";
rewritelog((r, 1, NULL, "go-ahead with proxy request %s [OK]",
}
/* now make sure the request gets handled by the proxy handler */
- r->proxyreq = PROXYREQ_REVERSE;
+ if (PROXYREQ_NONE == r->proxyreq) {
+ r->proxyreq = PROXYREQ_REVERSE;
+ }
r->handler = "proxy-server";
rewritelog((r, 1, dconf->directory, "go-ahead with proxy request "