summaryrefslogtreecommitdiff
path: root/docs/manual/mod/core.html.en
diff options
context:
space:
mode:
authorRich Bowen <rbowen@apache.org>2015-04-14 18:25:58 +0000
committerRich Bowen <rbowen@apache.org>2015-04-14 18:25:58 +0000
commit099924fce5230de4d1cd0d13c3e1d11312836233 (patch)
tree1e93761dd86c73b74976000c2b2567388f833ffd /docs/manual/mod/core.html.en
parente7f9be5468a39c10e8cbd55a03ee7edea17ca8ae (diff)
downloadhttpd-099924fce5230de4d1cd0d13c3e1d11312836233.tar.gz
rebuild html docs
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1673490 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/mod/core.html.en')
-rw-r--r--docs/manual/mod/core.html.en8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/manual/mod/core.html.en b/docs/manual/mod/core.html.en
index fd0868d24a..6b18b37ff1 100644
--- a/docs/manual/mod/core.html.en
+++ b/docs/manual/mod/core.html.en
@@ -959,13 +959,13 @@ the contents of file-system directories matching a regular expression.</td></tr>
However, it takes as an argument a
<a class="glossarylink" href="../glossary.html#regex" title="see glossary">regular expression</a>. For example:</p>
- <pre class="prettyprint lang-config">&lt;DirectoryMatch "^/www/(.+/)?[0-9]{3}"&gt;
+ <pre class="prettyprint lang-config">&lt;DirectoryMatch "^/www/(.+/)?[0-9]{3}/"&gt;
# ...
&lt;/DirectoryMatch&gt;</pre>
- <p>would match directories in <code>/www/</code> that consisted of three
- numbers.</p>
+ <p>matches directories in <code>/www/</code> (or any subdirectory thereof)
+ that consist of three numbers.</p>
<div class="note"><h3>Compatability</h3>
Prior to 2.3.9, this directive implicitly applied to sub-directories
@@ -989,7 +989,7 @@ the contents of file-system directories matching a regular expression.</td></tr>
(unnamed) backreferences are ignored. Use named groups instead.</p>
<pre class="prettyprint lang-config">&lt;DirectoryMatch ^/var/www/combined/(?&lt;sitename&gt;[^/]+)&gt;
- require ldap-group cn=%{env:MATCH_SITENAME},ou=combined,o=Example
+ Require ldap-group cn=%{env:MATCH_SITENAME},ou=combined,o=Example
&lt;/DirectoryMatch&gt;</pre>