From e10a9c65a24397cd5ad87e3796061b50a7de305e Mon Sep 17 00:00:00 2001 From: Eric Covener Date: Tue, 3 Jul 2012 16:19:29 +0000 Subject: [PATCH] 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 --- modules/mappers/mod_rewrite.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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; } -- 2.49.0