diff options
author | Joshua Slive <slive@apache.org> | 2001-05-07 02:42:21 +0200 |
---|---|---|
committer | Joshua Slive <slive@apache.org> | 2001-05-07 02:42:21 +0200 |
commit | 68af27a95317241ab89bd12fb5bce06e7a57e4c2 (patch) | |
tree | 13a37cc547e85b7346334621b9d07fbb8fdf30ec /docs/manual/mod/mod_include.html | |
parent | Back out the recent change to ap_get_brigade, to make it use indirection (diff) | |
download | apache2-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.html | 4 |
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> -<FilesMatch "\.shtml[.$]"><br> +<FilesMatch "\.shtml(\..+)?$"><br> SetOutputFilter INCLUDES<br> </FilesMatch> </code></blockquote> |