summaryrefslogtreecommitdiffstats
path: root/docs/manual/mod/mod_include.html
diff options
context:
space:
mode:
authorJoshua Slive <slive@apache.org>2001-05-07 02:42:21 +0200
committerJoshua Slive <slive@apache.org>2001-05-07 02:42:21 +0200
commit68af27a95317241ab89bd12fb5bce06e7a57e4c2 (patch)
tree13a37cc547e85b7346334621b9d07fbb8fdf30ec /docs/manual/mod/mod_include.html
parentBack out the recent change to ap_get_brigade, to make it use indirection (diff)
downloadapache2-68af27a95317241ab89bd12fb5bce06e7a57e4c2.tar.xz
apache2-68af27a95317241ab89bd12fb5bce06e7a57e4c2.zip
Bring the mod_include docs up to scratch and link up the ssi tutorial.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89042 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/mod/mod_include.html')
-rw-r--r--docs/manual/mod/mod_include.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/manual/mod/mod_include.html b/docs/manual/mod/mod_include.html
index b296e77c66..ee32bf010a 100644
--- a/docs/manual/mod/mod_include.html
+++ b/docs/manual/mod/mod_include.html
@@ -36,7 +36,7 @@ REL="Help"
<h2>Summary</h2>
-<p>This module provides a handler which will process files before they
+<p>This module provides a filter which will process files before they
are sent to the client. The processing is controlled by specially
formated SGML comments, referred to as <em>elements</em>. These
elements allow conditional text, the inclusion other files or
@@ -63,7 +63,7 @@ resulting document the mime type of <CODE>text/html</CODE>:
<blockquote><code>
AddType text/html .shtml<br>
-&lt;FilesMatch "\.shtml[.$]"&gt;<br>
+&lt;FilesMatch "\.shtml(\..+)?$"&gt;<br>
&nbsp;&nbsp;SetOutputFilter INCLUDES<br>
&lt;/FilesMatch&gt;
</code></blockquote>