From: Joe Orton Date: Wed, 10 Nov 2004 11:35:10 +0000 (+0000) Subject: Revert r1.135.2.32, fixing regression in QUERY_STRING handling since X-Git-Tag: 2.0.53~182 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=808f856d6257e5e17db687daaf10f32815cd9c3b;p=thirdparty%2Fapache%2Fhttpd.git Revert r1.135.2.32, fixing regression in QUERY_STRING handling since for [P] rules since 2.0.52. Reviewed by: jorton, nd, wrowe git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/APACHE_2_0_BRANCH@105731 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/mappers/mod_rewrite.c b/modules/mappers/mod_rewrite.c index 677fd78a0ed..f5083d9e7f3 100644 --- a/modules/mappers/mod_rewrite.c +++ b/modules/mappers/mod_rewrite.c @@ -1222,7 +1222,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);