diff options
author | Joshua Slive <slive@apache.org> | 2001-12-05 20:11:45 +0100 |
---|---|---|
committer | Joshua Slive <slive@apache.org> | 2001-12-05 20:11:45 +0100 |
commit | 7edd8f5d420dbe3e1e24d587eb5ceeda219afe3f (patch) | |
tree | aaa995d07f9e01003462885f3eec04f1422ee2ac /docs/manual/mod/mod_include.html | |
parent | Fix a typo. (diff) | |
download | apache2-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.html | 15 |
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 /> - <FilesMatch "\.shtml(\..+)?$"><br /> - SetOutputFilter INCLUDES<br /> - </FilesMatch></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><Directory></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><Directory></code> section, but this directive is |