home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 November / CMCD1104.ISO / Software / Complet / Apache / apache_2.0.52-win32-x86-no_ssl.msi / Data.Cab / F277868_ssi.xml < prev    next >
Extensible Markup Language  |  2004-04-17  |  20KB  |  489 lines

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