From 3fae612ac12f1dec72dcd6091573e9dc4458f90b Mon Sep 17 00:00:00 2001 From: Joe Orton Date: Mon, 1 Nov 2004 23:39:28 +0000 Subject: [PATCH] * modules/mappers/mod_rewrite.c (hook_uri2file): Revert r1.259 to fix regression in proxy and QUERY_STRING handling (though with proxy issues on HEAD mod_rewrite [P] stuff is still completely broken). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@105666 13f79535-47bb-0310-9956-ffa450edef68 --- modules/mappers/mod_rewrite.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/mappers/mod_rewrite.c b/modules/mappers/mod_rewrite.c index 0511a78bf2..65dc3280d9 100644 --- a/modules/mappers/mod_rewrite.c +++ b/modules/mappers/mod_rewrite.c @@ -4249,7 +4249,7 @@ static int hook_uri2file(request_rec *r) r->path_info, NULL); } if (r->args != NULL && - r->uri != r->unparsed_uri) { + r->uri == r->unparsed_uri) { /* see proxy_http:proxy_http_canon() */ r->filename = apr_pstrcat(r->pool, r->filename, "?", r->args, NULL); -- 2.50.1