home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 May / PCWorld_2003-05_cd.bin / Komunik / apache / apache_2.0.45-win32-x86-no_ssl.msi / Data.Cab / F232732_ssi.html.en < prev    next >
Extensible Markup Language  |  2003-03-30  |  24KB  |  477 lines

  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head><!--
  4.         XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
  5.               This file is generated from xml source: DO NOT EDIT
  6.         XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
  7.       -->
  8. <title>Apache Tutorial: Introduction to Server Side Includes - Apache HTTP Server</title>
  9. <link href="../style/css/manual.css" rel="stylesheet" media="all" type="text/css" title="Main stylesheet" />
  10. <link href="../style/css/manual-loose-100pc.css" rel="alternate stylesheet" media="all" type="text/css" title="No Sidebar - Default font size" />
  11. <link href="../style/css/manual-print.css" rel="stylesheet" media="print" type="text/css" />
  12. <link href="../images/favicon.ico" rel="shortcut icon" /></head>
  13. <body id="manual-page"><div id="page-header">
  14. <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="../faq/">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p>
  15. <p class="apache">Apache HTTP Server Version 2.0</p>
  16. <img alt="" src="../images/feather.gif" /></div>
  17. <div class="up"><a href="./"><img title="<-" alt="<-" src="../images/left.gif" /></a></div>
  18. <div id="path">
  19. <a href="http://www.apache.org/">Apache</a> > <a href="http://httpd.apache.org/">HTTP Server</a> > <a href="http://httpd.apache.org/docs-project/">Documentation</a> > <a href="../">Version 2.0</a> > <a href="./">How-To / Tutorials</a></div><div id="page-content"><div id="preamble"><h1>Apache Tutorial: Introduction to Server Side Includes</h1>
  20. <p>Server-side includes provide a means to add dynamic content to
  21. existing HTML documents.</p>
  22. </div>
  23. <div id="quickview"><ul id="toc"><li><img alt="" src="../images/down.gif" /> <a href="#related">Introduction</a></li>
  24. <li><img alt="" src="../images/down.gif" /> <a href="#what">What are SSI?</a></li>
  25. <li><img alt="" src="../images/down.gif" /> <a href="#configuring">Configuring your server to permit SSI</a></li>
  26. <li><img alt="" src="../images/down.gif" /> <a href="#basic">Basic SSI directives</a></li>
  27. <li><img alt="" src="../images/down.gif" /> <a href="#additionalexamples">Additional examples</a></li>
  28. <li><img alt="" src="../images/down.gif" /> <a href="#config">What else can I config?</a></li>
  29. <li><img alt="" src="../images/down.gif" /> <a href="#exec">Executing commands</a></li>
  30. <li><img alt="" src="../images/down.gif" /> <a href="#advanced">Advanced SSI techniques</a></li>
  31. <li><img alt="" src="../images/down.gif" /> <a href="#conclusion">Conclusion</a></li>
  32. </ul></div>
  33. <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  34. <div class="section">
  35. <h2><a name="related" id="related">Introduction</a></h2>
  36.  <table class="related"><tr><th>Related Modules</th><th>Related Directives</th></tr><tr><td><ul><li><code class="module"><a href="../mod/mod_include.html">mod_include</a></code></li><li><code class="module"><a href="../mod/mod_cgi.html">mod_cgi</a></code></li><li><code class="module"><a href="../mod/mod_expires.html">mod_expires</a></code></li></ul></td><td><ul><li><code class="directive"><a href="../mod/core.html#options">Options</a></code></li><li><code class="directive"><a href="../mod/mod_include.html#xbithack">XBitHack</a></code></li><li><code class="directive"><a href="../mod/mod_mime.html#addtype">AddType</a></code></li><li><code class="directive"><a href="../mod/core.html#setoutputfilter">SetOutputFilter</a></code></li><li><code class="directive"><a href="../mod/mod_setenvif.html#browsermatchnocase">BrowserMatchNoCase</a></code></li></ul></td></tr></table>
  37.  
  38.     <p>This article deals with Server Side Includes, usually called
  39.     simply SSI. In this article, I'll talk about configuring your
  40.     server to permit SSI, and introduce some basic SSI techniques
  41.     for adding dynamic content to your existing HTML pages.</p>
  42.  
  43.     <p>In the latter part of the article, we'll talk about some of
  44.     the somewhat more advanced things that can be done with SSI,
  45.     such as conditional statements in your SSI directives.</p>
  46.  
  47. </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  48. <div class="section">
  49. <h2><a name="what" id="what">What are SSI?</a></h2>
  50.  
  51.     <p>SSI (Server Side Includes) are directives that are placed in
  52.     HTML pages, and evaluated on the server while the pages are
  53.     being served. They let you add dynamically generated content to
  54.     an existing HTML page, without having to serve the entire page
  55.     via a CGI program, or other dynamic technology.</p>
  56.  
  57.     <p>The decision of when to use SSI, and when to have your page
  58.     entirely generated by some program, is usually a matter of how
  59.     much of the page is static, and how much needs to be
  60.     recalculated every time the page is served. SSI is a great way
  61.     to add small pieces of information, such as the current time.
  62.     But if a majority of your page is being generated at the time
  63.     that it is served, you need to look for some other
  64.     solution.</p>
  65. </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  66. <div class="section">
  67. <h2><a name="configuring" id="configuring">Configuring your server to permit SSI</a></h2>
  68.  
  69.  
  70.     <p>To permit SSI on your server, you must have the following
  71.     directive either in your <code>httpd.conf</code> file, or in a
  72.     <code>.htaccess</code> file:</p>
  73. <div class="example"><p><code>
  74.         Options +Includes
  75. </code></p></div>
  76.  
  77.     <p>This tells Apache that you want to permit files to be parsed
  78.     for SSI directives.  Note that most configurations contain
  79.     multiple <code class="directive"><a href="../mod/core.html#options">Options</a></code> directives
  80.     that can override each other.  You will probably need to apply the
  81.     <code>Options</code> to the specific directory where you want SSI
  82.     enabled in order to assure that it gets evaluated last.</p>
  83.  
  84.     <p>Not just any file is parsed for SSI directives. You have to
  85.     tell Apache which files should be parsed. There are two ways to
  86.     do this. You can tell Apache to parse any file with a
  87.     particular file extension, such as <code>.shtml</code>, with
  88.     the following directives:</p>
  89. <div class="example"><p><code>
  90.         AddType text/html .shtml<br />
  91.     AddOutputFilter INCLUDES .shtml
  92. </code></p></div>
  93.  
  94.     <p>One disadvantage to this approach is that if you wanted to
  95.     add SSI directives to an existing page, you would have to
  96.     change the name of that page, and all links to that page, in
  97.     order to give it a <code>.shtml</code> extension, so that those
  98.     directives would be executed.</p>
  99.  
  100.     <p>The other method is to use the <code class="directive"><a href="../mod/mod_include.html#xbithack">XBitHack</a></code> directive:</p>
  101. <div class="example"><p><code>
  102.         XBitHack on
  103. </code></p></div>
  104.  
  105.     <p><code class="directive"><a href="../mod/mod_include.html#xbithack">XBitHack</a></code>
  106.     tells Apache to parse files for SSI
  107.     directives if they have the execute bit set. So, to add SSI
  108.     directives to an existing page, rather than having to change
  109.     the file name, you would just need to make the file executable
  110.     using <code>chmod</code>.</p>
  111. <div class="example"><p><code>
  112.         chmod +x pagename.html
  113. </code></p></div>
  114.  
  115.     <p>A brief comment about what not to do. You'll occasionally
  116.     see people recommending that you just tell Apache to parse all
  117.     <code>.html</code> files for SSI, so that you don't have to
  118.     mess with <code>.shtml</code> file names. These folks have
  119.     perhaps not heard about <code class="directive"><a href="../mod/mod_include.html#xbithack">XBitHack</a></code>. The thing to
  120.     keep in mind is that, by doing this, you're requiring that
  121.     Apache read through every single file that it sends out to
  122.     clients, even if they don't contain any SSI directives. This
  123.     can slow things down quite a bit, and is not a good idea.</p>
  124.  
  125.     <p>Of course, on Windows, there is no such thing as an execute
  126.     bit to set, so that limits your options a little.</p>
  127.  
  128.     <p>In its default configuration, Apache does not send the last
  129.     modified date or content length HTTP headers on SSI pages,
  130.     because these values are difficult to calculate for dynamic
  131.     content. This can prevent your document from being cached, and
  132.     result in slower perceived client performance. There are two
  133.     ways to solve this:</p>
  134.  
  135.     <ol>
  136.       <li>Use the <code>XBitHack Full</code> configuration. This
  137.       tells Apache to determine the last modified date by looking
  138.       only at the date of the originally requested file, ignoring
  139.       the modification date of any included files.</li>
  140.  
  141.       <li>Use the directives provided by 
  142.       <code class="module"><a href="../mod/mod_expires.html">mod_expires</a></code> to set an explicit expiration
  143.       time on your files, thereby letting browsers and proxies
  144.       know that it is acceptable to cache them.</li>
  145.     </ol>
  146. </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  147. <div class="section">
  148. <h2><a name="basic" id="basic">Basic SSI directives</a></h2>
  149.  
  150.     <p>SSI directives have the following syntax:</p>
  151. <div class="example"><p><code>
  152.         <!--#element attribute=value attribute=value ... -->
  153. </code></p></div>
  154.  
  155.     <p>It is formatted like an HTML comment, so if you don't have
  156.     SSI correctly enabled, the browser will ignore it, but it will
  157.     still be visible in the HTML source. If you have SSI correctly
  158.     configured, the directive will be replaced with its
  159.     results.</p>
  160.  
  161.     <p>The element can be one of a number of things, and we'll talk
  162.     some more about most of these in the next installment of this
  163.     series. For now, here are some examples of what you can do with
  164.     SSI</p>
  165.  
  166. <h3><a name="todaysdate" id="todaysdate">Today's date</a></h3>
  167.  
  168. <div class="example"><p><code>
  169.         <!--#echo var="DATE_LOCAL" -->
  170. </code></p></div>
  171.  
  172.     <p>The <code>echo</code> element just spits out the value of a
  173.     variable. There are a number of standard variables, which
  174.     include the whole set of environment variables that are
  175.     available to CGI programs. Also, you can define your own
  176.     variables with the <code>set</code> element.</p>
  177.  
  178.     <p>If you don't like the format in which the date gets printed,
  179.     you can use the <code>config</code> element, with a
  180.     <code>timefmt</code> attribute, to modify that formatting.</p>
  181.  
  182. <div class="example"><p><code>
  183.         <!--#config timefmt="%A %B %d, %Y" --><br />
  184.         Today is <!--#echo var="DATE_LOCAL" -->
  185. </code></p></div>
  186.  
  187.  
  188. <h3><a name="lastmodified" id="lastmodified">Modification date of the file</a></h3>
  189.  
  190. <div class="example"><p><code>
  191.         This document last modified <!--#flastmod file="index.html" -->
  192. </code></p></div>
  193.  
  194.     <p>This element is also subject to <code>timefmt</code> format
  195.     configurations.</p>
  196.  
  197.  
  198. <h3><a name="cgi" id="cgi">Including the results of a CGI program</a></h3>
  199.  
  200.     <p>This is one of the more common uses of SSI - to output the
  201.     results of a CGI program, such as everybody's favorite, a ``hit
  202.     counter.''</p>
  203.  
  204. <div class="example"><p><code>
  205.         <!--#include virtual="/cgi-bin/counter.pl" -->
  206. </code></p></div>
  207.  
  208.  
  209. </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  210. <div class="section">
  211. <h2><a name="additionalexamples" id="additionalexamples">Additional examples</a></h2>
  212.  
  213.  
  214.     <p>Following are some specific examples of things you can do in
  215.     your HTML documents with SSI.</p>
  216.  
  217. <h3><a name="docmodified" id="docmodified">When was this document
  218. modified?</a></h3>
  219.  
  220.     <p>Earlier, we mentioned that you could use SSI to inform the
  221.     user when the document was most recently modified. However, the
  222.     actual method for doing that was left somewhat in question. The
  223.     following code, placed in your HTML document, will put such a
  224.     time stamp on your page. Of course, you will have to have SSI
  225.     correctly enabled, as discussed above.</p>
  226. <div class="example"><p><code>
  227.         <!--#config timefmt="%A %B %d, %Y" --><br />
  228.         This file last modified <!--#flastmod file="ssi.shtml" -->
  229. </code></p></div>
  230.  
  231.     <p>Of course, you will need to replace the
  232.     <code>ssi.shtml</code> with the actual name of the file that
  233.     you're referring to. This can be inconvenient if you're just
  234.     looking for a generic piece of code that you can paste into any
  235.     file, so you probably want to use the
  236.     <code>LAST_MODIFIED</code> variable instead:</p>
  237. <div class="example"><p><code>
  238.         <!--#config timefmt="%D" --><br />
  239.         This file last modified <!--#echo var="LAST_MODIFIED" -->
  240. </code></p></div>
  241.  
  242.     <p>For more details on the <code>timefmt</code> format, go to
  243.     your favorite search site and look for <code>strftime</code>. The
  244.     syntax is the same.</p>
  245.  
  246.  
  247. <h3><a name="standard-footer" id="standard-footer">Including a standard footer</a></h3>
  248.  
  249.  
  250.     <p>If you are managing any site that is more than a few pages,
  251.     you may find that making changes to all those pages can be a
  252.     real pain, particularly if you are trying to maintain some kind
  253.     of standard look across all those pages.</p>
  254.  
  255.     <p>Using an include file for a header and/or a footer can
  256.     reduce the burden of these updates. You just have to make one
  257.     footer file, and then include it into each page with the
  258.     <code>include</code> SSI command. The <code>include</code>
  259.     element can determine what file to include with either the
  260.     <code>file</code> attribute, or the <code>virtual</code>
  261.     attribute. The <code>file</code> attribute is a file path,
  262.     <em>relative to the current directory</em>. That means that it
  263.     cannot be an absolute file path (starting with /), nor can it
  264.     contain ../ as part of that path. The <code>virtual</code>
  265.     attribute is probably more useful, and should specify a URL
  266.     relative to the document being served. It can start with a /,
  267.     but must be on the same server as the file being served.</p>
  268. <div class="example"><p><code>
  269.         <!--#include virtual="/footer.html" -->
  270. </code></p></div>
  271.  
  272.     <p>I'll frequently combine the last two things, putting a
  273.     <code>LAST_MODIFIED</code> directive inside a footer file to be
  274.     included. SSI directives can be contained in the included file,
  275.     and includes can be nested - that is, the included file can
  276.     include another file, and so on.</p>
  277.  
  278.  
  279. </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  280. <div class="section">
  281. <h2><a name="config" id="config">What else can I config?</a></h2>
  282.  
  283.  
  284.     <p>In addition to being able to <code>config</code> the time
  285.     format, you can also <code>config</code> two other things.</p>
  286.  
  287.     <p>Usually, when something goes wrong with your SSI directive,
  288.     you get the message</p>
  289. <div class="example"><p><code>
  290.         [an error occurred while processing this directive]
  291. </code></p></div>
  292.  
  293.     <p>If you want to change that message to something else, you
  294.     can do so with the <code>errmsg</code> attribute to the
  295.     <code>config</code> element:</p>
  296. <div class="example"><p><code>
  297.         <!--#config errmsg="[It appears that you don't know how to use SSI]" -->
  298. </code></p></div>
  299.  
  300.     <p>Hopefully, end users will never see this message, because
  301.     you will have resolved all the problems with your SSI
  302.     directives before your site goes live. (Right?)</p>
  303.  
  304.     <p>And you can <code>config</code> the format in which file
  305.     sizes are returned with the <code>sizefmt</code> attribute. You
  306.     can specify <code>bytes</code> for a full count in bytes, or
  307.     <code>abbrev</code> for an abbreviated number in Kb or Mb, as
  308.     appropriate.</p>
  309.     </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  310. <div class="section">
  311. <h2><a name="exec" id="exec">Executing commands</a></h2>
  312.     
  313.  
  314.     <p>I expect that I'll have an article some time in the coming
  315.     months about using SSI with small CGI programs. For now, here's
  316.     something else that you can do with the <code>exec</code>
  317.     element. You can actually have SSI execute a command using the
  318.     shell (<code>/bin/sh</code>, to be precise - or the DOS shell,
  319.     if you're on Win32). The following, for example, will give you
  320.     a directory listing.</p>
  321. <div class="example"><p><code>
  322.         <pre><br />
  323.         <!--#exec cmd="ls" --><br />
  324.         </pre>
  325. </code></p></div>
  326.  
  327.     <p>or, on Windows</p>
  328. <div class="example"><p><code>
  329.         <pre><br />
  330.         <!--#exec cmd="dir" --><br />
  331.         </pre>
  332. </code></p></div>
  333.  
  334.     <p>You might notice some strange formatting with this directive
  335.     on Windows, because the output from <code>dir</code> contains
  336.     the string ``<<code>dir</code>>'' in it, which confuses
  337.     browsers.</p>
  338.  
  339.     <p>Note that this feature is exceedingly dangerous, as it will
  340.     execute whatever code happens to be embedded in the
  341.     <code>exec</code> tag. If you have any situation where users
  342.     can edit content on your web pages, such as with a
  343.     ``guestbook'', for example, make sure that you have this
  344.     feature disabled. You can allow SSI, but not the
  345.     <code>exec</code> feature, with the <code>IncludesNOEXEC</code>
  346.     argument to the <code>Options</code> directive.</p>
  347.     </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  348. <div class="section">
  349. <h2><a name="advanced" id="advanced">Advanced SSI techniques</a></h2>
  350.  
  351.  
  352.     <p>In addition to spitting out content, Apache SSI gives you
  353.     the option of setting variables, and using those variables in
  354.     comparisons and conditionals.</p>
  355.  
  356. <h3><a name="caveat" id="caveat">Caveat</a></h3>
  357.  
  358.     <p>Most of the features discussed in this article are only
  359.     available to you if you are running Apache 1.2 or later. Of
  360.     course, if you are not running Apache 1.2 or later, you need to
  361.     upgrade immediately, if not sooner. Go on. Do it now. We'll
  362.     wait.</p>
  363.  
  364.  
  365. <h3><a name="variables" id="variables">Setting variables</a></h3>
  366.  
  367.     <p>Using the <code>set</code> directive, you can set variables
  368.     for later use. We'll need this later in the discussion, so
  369.     we'll talk about it here. The syntax of this is as follows:</p>
  370. <div class="example"><p><code>
  371.         <!--#set var="name" value="Rich" -->
  372. </code></p></div>
  373.  
  374.     <p>In addition to merely setting values literally like that,
  375.     you can use any other variable, including, for example,
  376.     environment variables, or some of the variables we discussed in
  377.     the last article (like <code>LAST_MODIFIED</code>, for example)
  378.     to give values to your variables. You will specify that
  379.     something is a variable, rather than a literal string, by using
  380.     the dollar sign ($) before the name of the variable.</p>
  381. <div class="example"><p><code>
  382.         <!--#set var="modified" value="$LAST_MODIFIED" -->
  383. </code></p></div>
  384.  
  385.     <p>To put a literal dollar sign into the value of your
  386.     variable, you need to escape the dollar sign with a
  387.     backslash.</p>
  388. <div class="example"><p><code>
  389.         <!--#set var="cost" value="\$100" -->
  390. </code></p></div>
  391.  
  392.     <p>Finally, if you want to put a variable in the midst of a
  393.     longer string, and there's a chance that the name of the
  394.     variable will run up against some other characters, and thus be
  395.     confused with those characters, you can place the name of the
  396.     variable in braces, to remove this confusion. (It's hard to
  397.     come up with a really good example of this, but hopefully
  398.     you'll get the point.)</p>
  399. <div class="example"><p><code>
  400.         <!--#set var="date" value="${DATE_LOCAL}_${DATE_GMT}" -->
  401. </code></p></div>
  402.  
  403.  
  404. <h3><a name="conditional" id="conditional">Conditional expressions</a></h3>
  405.  
  406.  
  407.     <p>Now that we have variables, and are able to set and compare
  408.     their values, we can use them to express conditionals. This
  409.     lets SSI be a tiny programming language of sorts.
  410.     <code class="module"><a href="../mod/mod_include.html">mod_include</a></code> provides an <code>if</code>,
  411.     <code>elif</code>, <code>else</code>, <code>endif</code>
  412.     structure for building conditional statements. This allows you
  413.     to effectively generate multiple logical pages out of one
  414.     actual page.</p>
  415.  
  416.     <p>The structure of this conditional construct is:</p>
  417. <div class="example"><p><code>
  418.     <!--#if expr="test_condition" --><br />
  419.     <!--#elif expr="test_condition" --><br />
  420.     <!--#else --><br />
  421.     <!--#endif -->
  422. </code></p></div>
  423.  
  424.     <p>A <em>test_condition</em> can be any sort of logical
  425.     comparison - either comparing values to one another, or testing
  426.     the ``truth'' of a particular value. (A given string is true if
  427.     it is nonempty.) For a full list of the comparison operators
  428.     available to you, see the <code class="module"><a href="../mod/mod_include.html">mod_include</a></code>
  429.     documentation. Here are some examples of how one might use this
  430.     construct.</p>
  431.  
  432.     <p>In your configuration file, you could put the following
  433.     line:</p>
  434. <div class="example"><p><code>
  435.         BrowserMatchNoCase macintosh Mac<br />
  436.         BrowserMatchNoCase MSIE InternetExplorer
  437. </code></p></div>
  438.  
  439.     <p>This will set environment variables ``Mac'' and
  440.     ``InternetExplorer'' to true, if the client is running Internet
  441.     Explorer on a Macintosh.</p>
  442.  
  443.     <p>Then, in your SSI-enabled document, you might do the
  444.     following:</p>
  445. <div class="example"><p><code>
  446.         <!--#if expr="${Mac} && ${InternetExplorer}" --><br />
  447.         Apologetic text goes here<br />
  448.         <!--#else --><br />
  449.         Cool JavaScript code goes here<br />
  450.         <!--#endif -->
  451. </code></p></div>
  452.  
  453.     <p>Not that I have anything against IE on Macs - I just
  454.     struggled for a few hours last week trying to get some
  455.     JavaScript working on IE on a Mac, when it was working
  456.     everywhere else. The above was the interim workaround.</p>
  457.  
  458.     <p>Any other variable (either ones that you define, or normal
  459.     environment variables) can be used in conditional statements.
  460.     With Apache's ability to set environment variables with the
  461.     <code>SetEnvIf</code> directives, and other related directives,
  462.     this functionality can let you do some pretty involved dynamic
  463.     stuff without ever resorting to CGI.</p>
  464.  
  465. </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  466. <div class="section">
  467. <h2><a name="conclusion" id="conclusion">Conclusion</a></h2>
  468.  
  469.     <p>SSI is certainly not a replacement for CGI, or other
  470.     technologies used for generating dynamic web pages. But it is a
  471.     great way to add small amounts of dynamic content to pages,
  472.     without doing a lot of extra work.</p>
  473. </div></div>
  474. <div id="footer">
  475. <p class="apache">Maintained by the <a href="http://httpd.apache.org/docs-project/">Apache HTTP Server Documentation Project</a></p>
  476. <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="../faq/">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p></div>
  477. </body></html>