git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@97302
13f79535-47bb-0310-9956-
ffa450edef68
Changes with Apache 2.0.44
+ *) Emit a message to the error log when we return 404 because
+ the URI contained '%2f'. (This was previously nastily silent
+ and difficult to debug.) [Ken Coar]
+
*) Fix streaming output from an nph- CGI script. CGI:IRC now
works. PR 8482 [Jeff Trawick]
if (!r->proxyreq && r->parsed_uri.path) {
access_status = ap_unescape_url(r->parsed_uri.path);
if (access_status) {
+ if (access_status == HTTP_NOT_FOUND) {
+ ap_log_rerror(APLOG_MARK, APLOG_INFO, 0, r,
+ "found %2f (encoded '/') in URI "
+ "(decoded='%s'), returning 404"
+ r->parsed_uri.path);
+ }
return access_status;
}
}