Commit ba383291 authored by Joshua Slive's avatar Joshua Slive
Browse files

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
parent 2793534d
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -143,8 +143,8 @@ such as <code>.shtml</code>, with the following directives:</p>

<pre>
        AddType text/html .shtml
        &lt;FilesMatch "\.shtml[.$]"&gt;
          SetOutputFilter INCLUDES<br>
        &lt;FilesMatch "\.shtml(\..+)?$"&gt;
          SetOutputFilter INCLUDES
        &lt;/FilesMatch&gt;
</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>
+2 −0
Original line number Diff line number Diff line
@@ -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>
+2 −2
Original line number Diff line number Diff line
@@ -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>