Commit c648bd36 authored by Daniel Gruno's avatar Daniel Gruno
Browse files

Backport(ish) r1357167/r1357168 from trunk.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1358517 13f79535-47bb-0310-9956-ffa450edef68
parent cac4c200
Loading
Loading
Loading
Loading
+10 −1
Original line number Diff line number Diff line
@@ -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>