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:22:20 UTC

svn commit: r1358513 - /httpd/httpd/branches/2.4.x/docs/manual/mod/core.xml

Author: humbedooh
Date: Sat Jul  7 07:22:20 2012
New Revision: 1358513

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

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

Modified: httpd/httpd/branches/2.4.x/docs/manual/mod/core.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/mod/core.xml?rev=1358513&r1=1358512&r2=1358513&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/mod/core.xml (original)
+++ httpd/httpd/branches/2.4.x/docs/manual/mod/core.xml Sat Jul  7 07:22:20 2012
@@ -1656,8 +1656,17 @@ 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.
-    <glossary ref="regex">Regular expressions</glossary>
+    and <code>*</code> matches any sequences of characters.</p>
+    <highlight language="config">
+&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;
+</highlight>
+    <p><glossary ref="regex">Regular expressions</glossary>
     can also be used, with the addition of the
     <code>~</code> character. For example:</p>