diff options
-rw-r--r-- | docs/manual/howto/ssi.html.en | 6 | ||||
-rw-r--r-- | docs/manual/index.html.en | 2 | ||||
-rw-r--r-- | docs/manual/mod/mod_include.html | 4 |
3 files changed, 8 insertions, 4 deletions
diff --git a/docs/manual/howto/ssi.html.en b/docs/manual/howto/ssi.html.en index da17836b41..861545fbe1 100644 --- a/docs/manual/howto/ssi.html.en +++ b/docs/manual/howto/ssi.html.en @@ -143,8 +143,8 @@ such as <code>.shtml</code>, with the following directives:</p> <pre> AddType text/html .shtml - <FilesMatch "\.shtml[.$]"> - SetOutputFilter INCLUDES<br> + <FilesMatch "\.shtml(\..+)?$"> + SetOutputFilter INCLUDES </FilesMatch> </pre> @@ -516,6 +516,8 @@ ever resorting to CGI.</p> used for generating dynamic web pages. But it is a great way to add small amounts of dynamic content to pages, without doing a lot of extra work.</p> + +<!--#include virtual="footer.html" --> </body> </html> diff --git a/docs/manual/index.html.en b/docs/manual/index.html.en index 3bc03115a0..876dd40f16 100644 --- a/docs/manual/index.html.en +++ b/docs/manual/index.html.en @@ -133,6 +133,8 @@ Modules: <A HREF="mod/index-bytype.html">By Type</A> or </td></tr><tr><td> <A HREF="vhosts/">Virtual Hosts</A> </td></tr><tr><td> +<A HREF="howto/ssi.html">Server Side Includes</A> +</td></tr><tr><td> <A HREF="howto/cgi.html">Dynamic Content with CGI</A> </td></tr><tr><td> <A HREF="handler.html">Handlers</A> 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> |