summaryrefslogtreecommitdiffstats
path: root/docs/manual/mod/mod_include.html
diff options
context:
space:
mode:
authorJoshua Slive <slive@apache.org>2001-12-05 20:11:45 +0100
committerJoshua Slive <slive@apache.org>2001-12-05 20:11:45 +0100
commit7edd8f5d420dbe3e1e24d587eb5ceeda219afe3f (patch)
treeaaa995d07f9e01003462885f3eec04f1422ee2ac /docs/manual/mod/mod_include.html
parentFix a typo. (diff)
downloadapache2-7edd8f5d420dbe3e1e24d587eb5ceeda219afe3f.tar.xz
apache2-7edd8f5d420dbe3e1e24d587eb5ceeda219afe3f.zip
Update SSI docs to use AddOutputFilter in place of SetOutputFilter.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92349 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/mod/mod_include.html')
-rw-r--r--docs/manual/mod/mod_include.html15
1 files changed, 1 insertions, 14 deletions
diff --git a/docs/manual/mod/mod_include.html b/docs/manual/mod/mod_include.html
index 8d9623cb46..5a309c4db0 100644
--- a/docs/manual/mod/mod_include.html
+++ b/docs/manual/mod/mod_include.html
@@ -55,22 +55,9 @@
<blockquote>
<code>AddType text/html .shtml<br />
- &lt;FilesMatch "\.shtml(\..+)?$"&gt;<br />
- &nbsp;&nbsp;SetOutputFilter INCLUDES<br />
- &lt;/FilesMatch&gt;</code>
+ AddOutputFilter INCLUDES .shtml</code>
</blockquote>
- <p>Be careful to properly scope the INCLUDES filter to process
- only the correct files. The filter is <strong>not</strong>
- restricted to processing only HTML files. So, for example, if
- the INCLUDES filter is activated using a
- <code>&lt;Directory&gt;</code> section and that directory
- includes GIF files, mod_include will process the GIF files.
- This can have two adverse consequences: 1. there will be extra
- overhead in serving these files, and 2. these files could
- become corrupted if they happen to contain something that looks
- like an SSI element.</p>
-
<p>The following directive must be given for the directories
containing the shtml files (typically in a
<code>&lt;Directory&gt;</code> section, but this directive is