]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Backport(ish) r1357167/r1357168 from trunk.
authorDaniel Gruno <humbedooh@apache.org>
Sat, 7 Jul 2012 07:37:02 +0000 (07:37 +0000)
committerDaniel Gruno <humbedooh@apache.org>
Sat, 7 Jul 2012 07:37:02 +0000 (07:37 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1358517 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/core.xml

index aa6edb92ef184ccd2f9f14ff714c0edeb6722ebf..ae57eae022965a45e40a30b5ed728a1823d3da5b 100644 (file)
@@ -1262,7 +1262,16 @@ filenames</description>
 
     <p>The <var>filename</var> argument should include a filename, or
     a wild-card string, where <code>?</code> matches any single character,
-    and <code>*</code> matches any sequences of characters.
+    and <code>*</code> matches any sequences of characters:</p>
+    <example><pre>&lt;Files "cat.html"&gt;
+    # Insert stuff that applies to cat.html here
+&lt;/Files&gt;
+
+&lt;Files "?at.*"&gt;
+    # This would apply to cat.html, bat.html, hat.php and so on.
+&lt;/Files&gt;</pre></example>
+
+    <p>
     <glossary ref="regex">Regular expressions</glossary>
     can also be used, with the addition of the
     <code>~</code> character. For example:</p>