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