https://issues.apache.org/bugzilla/show_bug.cgi?id=51077
Mark Montague <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |PatchAvailable --- Comment #4 from Mark Montague <[email protected]> 2011-04-18 14:39:39 EDT --- The attached patch fixes the problem: $ curl -s http://127.0.0.1/fcgi-test-rewrite/some/script.php?q=hello | \ grep QUERY_STRING QUERY_STRING="q=hello" $ curl -s http://127.0.0.1/scgi-test-rewrite/some/script.php?q=hello | \ grep QUERY_STRING QUERY_STRING="q=hello" $ The test for the http and https schemata is done first in order to provide a small performance improvement by short-circuiting quickly in what should usually be the most common cases. This should be a complete fix; none of the other schemata listed in mod_rewrite.c:is_absolute_uri() nor any of the other proxy modules appear to be candidates for accepting query strings. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
