You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by hu...@apache.org on 2012/07/07 09:37:03 UTC

svn commit: r1358517 - /httpd/httpd/branches/2.2.x/docs/manual/mod/core.xml

Author: humbedooh
Date: Sat Jul  7 07:37:02 2012
New Revision: 1358517

URL: http://svn.apache.org/viewvc?rev=1358517&view=rev
Log:
Backport(ish)  r1357167/r1357168 from trunk.

Modified:
    httpd/httpd/branches/2.2.x/docs/manual/mod/core.xml

Modified: httpd/httpd/branches/2.2.x/docs/manual/mod/core.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/docs/manual/mod/core.xml?rev=1358517&r1=1358516&r2=1358517&view=diff
==============================================================================
--- httpd/httpd/branches/2.2.x/docs/manual/mod/core.xml (original)
+++ httpd/httpd/branches/2.2.x/docs/manual/mod/core.xml Sat Jul  7 07:37:02 2012
@@ -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>