From: Eric Covener Date: Tue, 3 Jul 2012 16:19:29 +0000 (+0000) Subject: add a pointer to 'rewriteoptions', without giving away the option name, if someone X-Git-Tag: 2.5.0-alpha~6681 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e10a9c65a24397cd5ad87e3796061b50a7de305e;p=apache add a pointer to 'rewriteoptions', without giving away the option name, if someone happens to have rewrite trace on when mod_rewrite declines a non URL-path. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1356813 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/mappers/mod_rewrite.c b/modules/mappers/mod_rewrite.c index 7024eae7d4..8590c5910e 100644 --- a/modules/mappers/mod_rewrite.c +++ b/modules/mappers/mod_rewrite.c @@ -4453,7 +4453,9 @@ static int hook_uri2file(request_rec *r) if ((dconf->options & OPTION_ANYURI) == 0 && ((r->unparsed_uri[0] == '*' && r->unparsed_uri[1] == '\0') || !r->uri || r->uri[0] != '/')) { - rewritelog((r, 8, NULL, "Declining, request-URI '%s' is not a URL-path", + rewritelog((r, 8, NULL, "Declining, request-URI '%s' is not a URL-path. " + "Consult the manual entry for the RewriteOptions directive " + "for options and caveats about matching other strings.", r->uri)); return DECLINED; }