From: Rich Bowen
Date: Fri, 24 Dec 2004 19:29:15 +0000 (+0000)
Subject: As reported in bug ID 32635, the regex was not quite what it promised to
X-Git-Tag: 2.0.53~112
X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ba9908a5cca593247a333fd0d272679c81584a75;p=thirdparty%2Fapache%2Fhttpd.git
As reported in bug ID 32635, the regex was not quite what it promised to
be. Thanks to dc@duke.edu
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@123298 13f79535-47bb-0310-9956-ffa450edef68
---
diff --git a/docs/manual/mod/core.html.en b/docs/manual/mod/core.html.en
index a0dbcd7e1a5..9bd3835e558 100644
--- a/docs/manual/mod/core.html.en
+++ b/docs/manual/mod/core.html.en
@@ -740,7 +740,7 @@ subdirectories
takes as an argument a regular expression. For example:
- <DirectoryMatch "^/www/.*/[0-9]{3}">
+ <DirectoryMatch "^/www/(.+/)?[0-9]{3}">
would match directories in /www/
that consisted of three
diff --git a/docs/manual/mod/core.xml b/docs/manual/mod/core.xml
index 6afa3e9359d..7e0f6e89531 100644
--- a/docs/manual/mod/core.xml
+++ b/docs/manual/mod/core.xml
@@ -694,7 +694,7 @@ subdirectories
takes as an argument a regular expression. For example:
- <DirectoryMatch "^/www/.*/[0-9]{3}">
+ <DirectoryMatch "^/www/(.+/)?[0-9]{3}">
would match directories in /www/
that consisted of three