1
0
mirror of https://github.com/apache/httpd.git synced 2026-01-06 09:01:14 +03:00

Missed a FilesMatch section, meh.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1331701 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Daniel Gruno
2012-04-28 07:54:58 +00:00
parent 543afc4b46
commit cc403785bf
2 changed files with 10 additions and 2 deletions

View File

@@ -1769,7 +1769,11 @@ filenames</td></tr>
does. However, it accepts a <a class="glossarylink" href="../glossary.html#regex" title="see glossary">regular
expression</a>. For example:</p>
<pre class="prettyprint lang-config">&lt;FilesMatch "\.(gif|jpe?g|png)$"&gt;</pre>
<pre class="prettyprint lang-config">
&lt;FilesMatch "\.(gif|jpe?g|png)$"&gt;
# ...
&lt;/FilesMatch&gt;
</pre>
<p>would match most common Internet graphics formats.</p>

View File

@@ -1701,7 +1701,11 @@ filenames</description>
does. However, it accepts a <glossary ref="regex">regular
expression</glossary>. For example:</p>
<highlight language="config">&lt;FilesMatch "\.(gif|jpe?g|png)$"&gt;</highlight>
<highlight language="config">
&lt;FilesMatch "\.(gif|jpe?g|png)$"&gt;
# ...
&lt;/FilesMatch&gt;
</highlight>
<p>would match most common Internet graphics formats.</p>
</usage>