From: Vincent Bray
Date: Mon, 23 Jul 2007 08:24:06 +0000 (+0000)
Subject: Explain that ? and * don't match / in Location regexen, submitted by Eric
X-Git-Tag: 2.3.0~1701
X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ab879a95d5b6a008abf2bc4c4add52f5eb8c2b77;p=thirdparty%2Fapache%2Fhttpd.git
Explain that ? and * don't match / in Location regexen, submitted by Eric
Covener Sept 23, '06
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@558651 13f79535-47bb-0310-9956-ffa450edef68
---
diff --git a/docs/manual/mod/core.html.en b/docs/manual/mod/core.html.en
index c64937ab3a9..60295e17dad 100644
--- a/docs/manual/mod/core.html.en
+++ b/docs/manual/mod/core.html.en
@@ -1866,7 +1866,7 @@ URLs
The URL may use wildcards. In a wild-card string, ? matches
any single character, and * matches any sequences of
- characters.
+ characters. Neither wilcard character matches a / in the URL-path.
Regular expressions
can also be used, with the addition of the
diff --git a/docs/manual/mod/core.xml b/docs/manual/mod/core.xml
index 0a38f922d9a..828b5e1e83e 100644
--- a/docs/manual/mod/core.xml
+++ b/docs/manual/mod/core.xml
@@ -1858,7 +1858,7 @@ URLs
The URL may use wildcards. In a wild-card string, ? matches
any single character, and * matches any sequences of
- characters.
+ characters. Neither wilcard character matches a / in the URL-path.
Regular expressions
can also be used, with the addition of the