home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2004 May / Gamestar_62_2004-05_dvd.iso / Programy / apache_2.0.48-win32-x86-no_ssl.msi / Data.Cab / F252188_contentnegotiation.xml < prev    next >
Extensible Markup Language  |  2003-09-20  |  27KB  |  650 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. <manualpage metafile="content-negotiation.xml.meta">
  5.  
  6. <title>Content Negotiation</title>
  7.  
  8. <summary>
  9.  
  10.     <p>Apache supports content negotiation as described in
  11.     the HTTP/1.1 specification. It can choose the best
  12.     representation of a resource based on the browser-supplied
  13.     preferences for media type, languages, character set and
  14.     encoding. It also implements a couple of features to give
  15.     more intelligent handling of requests from browsers that send
  16.     incomplete negotiation information.</p>
  17.  
  18.     <p>Content negotiation is provided by the
  19.     <module>mod_negotiation</module> module, which is compiled in
  20.     by default.</p>
  21. </summary>
  22.  
  23. <section id="about"><title>About Content Negotiation</title>
  24.  
  25.     <p>A resource may be available in several different
  26.     representations. For example, it might be available in
  27.     different languages or different media types, or a combination.
  28.     One way of selecting the most appropriate choice is to give the
  29.     user an index page, and let them select. However it is often
  30.     possible for the server to choose automatically. This works
  31.     because browsers can send, as part of each request, information
  32.     about what representations they prefer. For example, a browser
  33.     could indicate that it would like to see information in French,
  34.     if possible, else English will do. Browsers indicate their
  35.     preferences by headers in the request. To request only French
  36.     representations, the browser would send</p>
  37.  
  38. <example>Accept-Language: fr</example>
  39.  
  40.     <p>Note that this preference will only be applied when there is
  41.     a choice of representations and they vary by language.</p>
  42.  
  43.     <p>As an example of a more complex request, this browser has
  44.     been configured to accept French and English, but prefer
  45.     French, and to accept various media types, preferring HTML over
  46.     plain text or other text types, and preferring GIF or JPEG over
  47.     other media types, but also allowing any other media type as a
  48.     last resort:</p>
  49.  
  50. <example>
  51.   Accept-Language: fr; q=1.0, en; q=0.5<br />
  52.   Accept: text/html; q=1.0, text/*; q=0.8, image/gif; q=0.6, image/jpeg; q=0.6, image/*; q=0.5, */*; q=0.1
  53. </example>
  54.  
  55.     <p>Apache supports 'server driven' content negotiation, as
  56.     defined in the HTTP/1.1 specification. It fully supports the
  57.     <code>Accept</code>, <code>Accept-Language</code>,
  58.     <code>Accept-Charset</code> and<code>Accept-Encoding</code> 
  59.     request headers. Apache also supports 'transparent'
  60.     content negotiation, which is an experimental negotiation
  61.     protocol defined in RFC 2295 and RFC 2296. It does not offer
  62.     support for 'feature negotiation' as defined in these RFCs.</p>
  63.  
  64.     <p>A <strong>resource</strong> is a conceptual entity
  65.     identified by a URI (RFC 2396). An HTTP server like Apache
  66.     provides access to <strong>representations</strong> of the
  67.     resource(s) within its namespace, with each representation in
  68.     the form of a sequence of bytes with a defined media type,
  69.     character set, encoding, etc. Each resource may be associated
  70.     with zero, one, or more than one representation at any given
  71.     time. If multiple representations are available, the resource
  72.     is referred to as <strong>negotiable</strong> and each of its
  73.     representations is termed a <strong>variant</strong>. The ways
  74.     in which the variants for a negotiable resource vary are called
  75.     the <strong>dimensions</strong> of negotiation.</p>
  76. </section>
  77.  
  78. <section id="negotiation"><title>Negotiation in Apache</title>
  79.  
  80.     <p>In order to negotiate a resource, the server needs to be
  81.     given information about each of the variants. This is done in
  82.     one of two ways:</p>
  83.  
  84.     <ul>
  85.       <li>Using a type map (<em>i.e.</em>, a <code>*.var</code>
  86.       file) which names the files containing the variants
  87.       explicitly, or</li>
  88.  
  89.       <li>Using a 'MultiViews' search, where the server does an
  90.       implicit filename pattern match and chooses from among the
  91.       results.</li>
  92.     </ul>
  93.  
  94.    <section id="type-map"><title>Using a type-map file</title>
  95.  
  96.     <p>A type map is a document which is associated with the
  97.     handler named <code>type-map</code> (or, for
  98.     backwards-compatibility with older Apache configurations, the
  99.     MIME type <code>application/x-type-map</code>). Note that to
  100.     use this feature, you must have a handler set in the
  101.     configuration that defines a file suffix as
  102.     <code>type-map</code>; this is best done with</p>
  103.  
  104. <example>AddHandler type-map .var</example>
  105.  
  106.     <p>in the server configuration file.</p>
  107.  
  108.     <p>Type map files should have the same name as the resource
  109.     which they are describing, and have an entry for each available
  110.     variant; these entries consist of contiguous HTTP-format header
  111.     lines. Entries for different variants are separated by blank
  112.     lines. Blank lines are illegal within an entry. It is
  113.     conventional to begin a map file with an entry for the combined
  114.     entity as a whole (although this is not required, and if
  115.     present will be ignored). An example map file is shown below.
  116.     This file would be named <code>foo.var</code>, as it describes
  117.     a resource named <code>foo</code>.</p>
  118.  
  119. <example>
  120.   URI: foo<br />
  121. <br />
  122.   URI: foo.en.html<br />
  123.   Content-type: text/html<br />
  124.   Content-language: en<br />
  125. <br />
  126.   URI: foo.fr.de.html<br />
  127.   Content-type: text/html;charset=iso-8859-2<br />
  128.   Content-language: fr, de<br />
  129. </example>
  130.     <p>Note also that a typemap file will take precedence over the
  131.     filename's extension, even when Multiviews is on. If the
  132.     variants have different source qualities, that may be indicated
  133.     by the "qs" parameter to the media type, as in this picture
  134.     (available as JPEG, GIF, or ASCII-art): </p>
  135.  
  136. <example>
  137.   URI: foo<br />
  138. <br />
  139.   URI: foo.jpeg<br />
  140.   Content-type: image/jpeg; qs=0.8<br />
  141. <br />
  142.   URI: foo.gif<br />
  143.   Content-type: image/gif; qs=0.5<br />
  144. <br />
  145.   URI: foo.txt<br />
  146.   Content-type: text/plain; qs=0.01<br />
  147. </example>
  148.  
  149.     <p>qs values can vary in the range 0.000 to 1.000. Note that
  150.     any variant with a qs value of 0.000 will never be chosen.
  151.     Variants with no 'qs' parameter value are given a qs factor of
  152.     1.0. The qs parameter indicates the relative 'quality' of this
  153.     variant compared to the other available variants, independent
  154.     of the client's capabilities. For example, a JPEG file is
  155.     usually of higher source quality than an ASCII file if it is
  156.     attempting to represent a photograph. However, if the resource
  157.     being represented is an original ASCII art, then an ASCII
  158.     representation would have a higher source quality than a JPEG
  159.     representation. A qs value is therefore specific to a given
  160.     variant depending on the nature of the resource it
  161.     represents.</p>
  162.  
  163.     <p>The full list of headers recognized is available in the <a
  164.     href="mod/mod_negotiation.html#typemaps">mod_negotation
  165.     typemap</a> documentation.</p>
  166. </section>
  167.  
  168. <section id="multiviews"><title>Multiviews</title>
  169.  
  170.     <p><code>MultiViews</code> is a per-directory option, meaning it
  171.     can be set with an <directive module="core">Options</directive>
  172.     directive within a <directive module="core"
  173.     type="section">Directory</directive>, <directive module="core"
  174.     type="section">Location</directive> or <directive module="core"
  175.     type="section">Files</directive> section in
  176.     <code>httpd.conf</code>, or (if <directive
  177.     module="core">AllowOverride</directive> is properly set) in
  178.     <code>.htaccess</code> files. Note that <code>Options All</code>
  179.     does not set <code>MultiViews</code>; you have to ask for it by
  180.     name.</p>
  181.  
  182.     <p>The effect of <code>MultiViews</code> is as follows: if the
  183.     server receives a request for <code>/some/dir/foo</code>, if
  184.     <code>/some/dir</code> has <code>MultiViews</code> enabled, and
  185.     <code>/some/dir/foo</code> does <em>not</em> exist, then the
  186.     server reads the directory looking for files named foo.*, and
  187.     effectively fakes up a type map which names all those files,
  188.     assigning them the same media types and content-encodings it
  189.     would have if the client had asked for one of them by name. It
  190.     then chooses the best match to the client's requirements.</p>
  191.  
  192.     <p><code>MultiViews</code> may also apply to searches for the file
  193.     named by the <directive
  194.     module="mod_dir">DirectoryIndex</directive> directive, if the
  195.     server is trying to index a directory. If the configuration files
  196.     specify</p>
  197. <example>DirectoryIndex index</example>
  198.     <p>then the server will arbitrate between <code>index.html</code>
  199.     and <code>index.html3</code> if both are present. If neither
  200.     are present, and <code>index.cgi</code> is there, the server
  201.     will run it.</p>
  202.  
  203.     <p>If one of the files found when reading the directory does not
  204.     have an extension recognized by <code>mod_mime</code> to designate
  205.     its Charset, Content-Type, Language, or Encoding, then the result
  206.     depends on the setting of the <directive
  207.     module="mod_mime">MultiViewsMatch</directive> directive.  This
  208.     directive determines whether handlers, filters, and other
  209.     extension types can participate in MultiViews negotiation.</p>
  210. </section>
  211. </section>
  212.  
  213. <section id="methods"><title>The Negotiation Methods</title>
  214.  
  215.     <p>After Apache has obtained a list of the variants for a given
  216.     resource, either from a type-map file or from the filenames in
  217.     the directory, it invokes one of two methods to decide on the
  218.     'best' variant to return, if any. It is not necessary to know
  219.     any of the details of how negotiation actually takes place in
  220.     order to use Apache's content negotiation features. However the
  221.     rest of this document explains the methods used for those
  222.     interested. </p>
  223.  
  224.     <p>There are two negotiation methods:</p>
  225.  
  226.     <ol>
  227.       <li><strong>Server driven negotiation with the Apache
  228.       algorithm</strong> is used in the normal case. The Apache
  229.       algorithm is explained in more detail below. When this
  230.       algorithm is used, Apache can sometimes 'fiddle' the quality
  231.       factor of a particular dimension to achieve a better result.
  232.       The ways Apache can fiddle quality factors is explained in
  233.       more detail below.</li>
  234.  
  235.       <li><strong>Transparent content negotiation</strong> is used
  236.       when the browser specifically requests this through the
  237.       mechanism defined in RFC 2295. This negotiation method gives
  238.       the browser full control over deciding on the 'best' variant,
  239.       the result is therefore dependent on the specific algorithms
  240.       used by the browser. As part of the transparent negotiation
  241.       process, the browser can ask Apache to run the 'remote
  242.       variant selection algorithm' defined in RFC 2296.</li>
  243.     </ol>
  244.  
  245. <section id="dimensions"><title>Dimensions of Negotiation</title>
  246.  
  247.     <table>
  248.       <columnspec><column width=".15"/><column width=".85"/></columnspec>
  249.       <tr valign="top">
  250.         <th>Dimension</th>
  251.  
  252.         <th>Notes</th>
  253.       </tr>
  254.  
  255.       <tr valign="top">
  256.         <td>Media Type</td>
  257.  
  258.         <td>Browser indicates preferences with the <code>Accept</code>
  259.         header field. Each item can have an associated quality factor.
  260.         Variant description can also have a quality factor (the "qs"
  261.         parameter).</td>
  262.       </tr>
  263.  
  264.       <tr valign="top">
  265.         <td>Language</td>
  266.  
  267.         <td>Browser indicates preferences with the
  268.         <code>Accept-Language</code> header field. Each item can have
  269.         a quality factor. Variants can be associated with none, one or
  270.         more than one language.</td>
  271.       </tr>
  272.  
  273.       <tr valign="top">
  274.         <td>Encoding</td>
  275.  
  276.         <td>Browser indicates preference with the
  277.         <code>Accept-Encoding</code> header field. Each item can have
  278.         a quality factor.</td>
  279.       </tr>
  280.  
  281.       <tr valign="top">
  282.         <td>Charset</td>
  283.  
  284.         <td>Browser indicates preference with the
  285.         <code>Accept-Charset</code> header field. Each item can have a
  286.         quality factor. Variants can indicate a charset as a parameter
  287.         of the media type.</td>
  288.       </tr>
  289.     </table>
  290. </section>
  291.  
  292. <section id="algorithm"><title>Apache Negotiation Algorithm</title>
  293.  
  294.     <p>Apache can use the following algorithm to select the 'best'
  295.     variant (if any) to return to the browser. This algorithm is
  296.     not further configurable. It operates as follows:</p>
  297.  
  298.     <ol>
  299.       <li>First, for each dimension of the negotiation, check the
  300.       appropriate <em>Accept*</em> header field and assign a
  301.       quality to each variant. If the <em>Accept*</em> header for
  302.       any dimension implies that this variant is not acceptable,
  303.       eliminate it. If no variants remain, go to step 4.</li>
  304.  
  305.       <li>
  306.         Select the 'best' variant by a process of elimination. Each
  307.         of the following tests is applied in order. Any variants
  308.         not selected at each test are eliminated. After each test,
  309.         if only one variant remains, select it as the best match
  310.         and proceed to step 3. If more than one variant remains,
  311.         move on to the next test. 
  312.  
  313.         <ol>
  314.           <li>Multiply the quality factor from the <code>Accept</code>
  315.           header with the quality-of-source factor for this variants
  316.           media type, and select the variants with the highest
  317.           value.</li>
  318.  
  319.           <li>Select the variants with the highest language quality
  320.           factor.</li>
  321.  
  322.           <li>Select the variants with the best language match,
  323.           using either the order of languages in the
  324.           <code>Accept-Language</code> header (if present), or else
  325.           the order of languages in the <code>LanguagePriority</code>
  326.           directive (if present).</li>
  327.  
  328.           <li>Select the variants with the highest 'level' media
  329.           parameter (used to give the version of text/html media
  330.           types).</li>
  331.  
  332.           <li>Select variants with the best charset media
  333.           parameters, as given on the <code>Accept-Charset</code>
  334.           header line.  Charset ISO-8859-1 is acceptable unless
  335.           explicitly excluded. Variants with a <code>text/*</code>
  336.           media type but not explicitly associated with a particular
  337.           charset are assumed to be in ISO-8859-1.</li>
  338.  
  339.           <li>Select those variants which have associated charset
  340.           media parameters that are <em>not</em> ISO-8859-1. If
  341.           there are no such variants, select all variants
  342.           instead.</li>
  343.  
  344.           <li>Select the variants with the best encoding. If there
  345.           are variants with an encoding that is acceptable to the
  346.           user-agent, select only these variants. Otherwise if
  347.           there is a mix of encoded and non-encoded variants,
  348.           select only the unencoded variants. If either all
  349.           variants are encoded or all variants are not encoded,
  350.           select all variants.</li>
  351.  
  352.           <li>Select the variants with the smallest content
  353.           length.</li>
  354.  
  355.           <li>Select the first variant of those remaining. This
  356.           will be either the first listed in the type-map file, or
  357.           when variants are read from the directory, the one whose
  358.           file name comes first when sorted using ASCII code
  359.           order.</li>
  360.         </ol>
  361.       </li>
  362.  
  363.       <li>The algorithm has now selected one 'best' variant, so
  364.       return it as the response. The HTTP response header
  365.       <code>Vary</code> is set to indicate the dimensions of
  366.       negotiation (browsers and caches can use this information when
  367.       caching the resource).  End.</li>
  368.  
  369.       <li>To get here means no variant was selected (because none
  370.       are acceptable to the browser). Return a 406 status (meaning
  371.       "No acceptable representation") with a response body
  372.       consisting of an HTML document listing the available
  373.       variants. Also set the HTTP <code>Vary</code> header to
  374.       indicate the dimensions of variance.</li>
  375.     </ol>
  376. </section>
  377. </section>
  378.  
  379. <section id="better"><title>Fiddling with Quality
  380.     Values</title>
  381.  
  382.     <p>Apache sometimes changes the quality values from what would
  383.     be expected by a strict interpretation of the Apache
  384.     negotiation algorithm above. This is to get a better result
  385.     from the algorithm for browsers which do not send full or
  386.     accurate information. Some of the most popular browsers send
  387.     <code>Accept</code> header information which would otherwise
  388.     result in the selection of the wrong variant in many cases. If a
  389.     browser sends full and correct information these fiddles will not
  390.     be applied.</p>
  391.  
  392. <section id="wildcards"><title>Media Types and Wildcards</title>
  393.  
  394.     <p>The <code>Accept:</code> request header indicates preferences
  395.     for media types. It can also include 'wildcard' media types, such
  396.     as "image/*" or "*/*" where the * matches any string. So a request
  397.     including:</p>
  398.  
  399. <example>Accept: image/*, */*</example>
  400.  
  401.     <p>would indicate that any type starting "image/" is acceptable,
  402.     as is any other type.
  403.     Some browsers routinely send wildcards in addition to explicit
  404.     types they can handle. For example:</p>
  405.  
  406. <example>
  407.   Accept: text/html, text/plain, image/gif, image/jpeg, */*
  408. </example>
  409.     <p>The intention of this is to indicate that the explicitly listed
  410.     types are preferred, but if a different representation is
  411.     available, that is ok too.  Using explicit quality values,
  412.     what the browser really wants is something like:</p>
  413. <example>
  414.   Accept: text/html, text/plain, image/gif, image/jpeg, */*; q=0.01
  415. </example>
  416.     <p>The explicit types have no quality factor, so they default to a
  417.     preference of 1.0 (the highest). The wildcard */* is given a
  418.     low preference of 0.01, so other types will only be returned if
  419.     no variant matches an explicitly listed type.</p>
  420.  
  421.     <p>If the <code>Accept:</code> header contains <em>no</em> q
  422.     factors at all, Apache sets the q value of "*/*", if present, to
  423.     0.01 to emulate the desired behavior. It also sets the q value of
  424.     wildcards of the format "type/*" to 0.02 (so these are preferred
  425.     over matches against "*/*". If any media type on the
  426.     <code>Accept:</code> header contains a q factor, these special
  427.     values are <em>not</em> applied, so requests from browsers which
  428.     send the explicit information to start with work as expected.</p>
  429. </section>
  430.  
  431. <section id="exceptions"><title>Language Negotiation Exceptions</title>
  432.  
  433.     <p>New in Apache 2.0, some exceptions have been added to the
  434.     negotiation algorithm to allow graceful fallback when language
  435.     negotiation fails to find a match.</p>
  436.  
  437.     <p>When a client requests a page on your server, but the server
  438.     cannot find a single page that matches the
  439.     <code>Accept-language</code> sent by
  440.     the browser, the server will return either a "No Acceptable
  441.     Variant" or "Multiple Choices" response to the client.  To avoid
  442.     these error messages, it is possible to configure Apache to ignore
  443.     the <code>Accept-language</code> in these cases and provide a
  444.     document that does not explicitly match the client's request.  The
  445.     <directive
  446.     module="mod_negotiation">ForceLanguagePriority</directive>
  447.     directive can be used to override one or both of these error
  448.     messages and substitute the servers judgement in the form of the
  449.     <directive module="mod_negotiation">LanguagePriority</directive>
  450.     directive.</p>
  451.  
  452.     <p>The server will also attempt to match language-subsets when no
  453.     other match can be found.  For example, if a client requests
  454.     documents with the language <code>en-GB</code> for British
  455.     English, the server is not normally allowed by the HTTP/1.1
  456.     standard to match that against a document that is marked as simply
  457.     <code>en</code>.  (Note that it is almost surely a configuration
  458.     error to include <code>en-GB</code> and not <code>en</code> in the
  459.     <code>Accept-Language</code> header, since it is very unlikely
  460.     that a reader understands British English, but doesn't understand
  461.     English in general.  Unfortunately, many current clients have
  462.     default configurations that resemble this.)  However, if no other
  463.     language match is possible and the server is about to return a "No
  464.     Acceptable Variants" error or fallback to the <directive
  465.     module="mod_negotiation">LanguagePriority</directive>, the server
  466.     will ignore the subset specification and match <code>en-GB</code>
  467.     against <code>en</code> documents.  Implicitly, Apache will add
  468.     the parent language to the client's acceptable language list with
  469.     a very low quality value.  But note that if the client requests
  470.     "en-GB; qs=0.9, fr; qs=0.8", and the server has documents
  471.     designated "en" and "fr", then the "fr" document will be returned.
  472.     This is necessary to maintain compliance with the HTTP/1.1
  473.     specification and to work effectively with properly configured
  474.     clients.</p>
  475.  
  476.     <p>In order to support advanced techniques (such as cookies or
  477.     special URL-paths) to determine the user's preferred language,
  478.     since Apache 2.0.47 <module>mod_negotiation</module> recognizes
  479.     the <a href="env.html">environment variable</a>
  480.     <code>prefer-language</code>. If it exists and contains an
  481.     appropriate language tag, <module>mod_negotiation</module> will
  482.     try to select a matching variant. If there's no such variant,
  483.     the normal negotiation process applies.</p>
  484.  
  485.     <example><title>Example</title>
  486.       SetEnvIf Cookie "language=en" prefer-language=en<br />
  487.       SetEnvIf Cookie "language=fr" prefer-language=fr
  488.    </example>
  489. </section>
  490. </section>
  491.  
  492. <section id="extensions"><title>Extensions to Transparent Content
  493. Negotiation</title> 
  494.  
  495. <p>Apache extends the transparent content negotiation protocol (RFC
  496. 2295) as follows. A new <code>{encoding ..}</code> element is used in
  497. variant lists to label variants which are available with a specific
  498. content-encoding only. The implementation of the RVSA/1.0 algorithm
  499. (RFC 2296) is extended to recognize encoded variants in the list, and
  500. to use them as candidate variants whenever their encodings are
  501. acceptable according to the <code>Accept-Encoding</code> request
  502. header. The RVSA/1.0 implementation does not round computed quality
  503. factors to 5 decimal places before choosing the best variant.</p>
  504. </section>
  505.  
  506. <section id="naming"><title>Note on hyperlinks and naming conventions</title>
  507.  
  508.     <p>If you are using language negotiation you can choose between
  509.     different naming conventions, because files can have more than
  510.     one extension, and the order of the extensions is normally
  511.     irrelevant (see the <a
  512.     href="mod/mod_mime.html#multipleext">mod_mime</a> documentation
  513.     for details).</p>
  514.  
  515.     <p>A typical file has a MIME-type extension (<em>e.g.</em>,
  516.     <code>html</code>), maybe an encoding extension (<em>e.g.</em>,
  517.     <code>gz</code>), and of course a language extension
  518.     (<em>e.g.</em>, <code>en</code>) when we have different
  519.     language variants of this file.</p>
  520.  
  521.     <p>Examples:</p>
  522.  
  523.     <ul>
  524.       <li>foo.en.html</li>
  525.  
  526.       <li>foo.html.en</li>
  527.  
  528.       <li>foo.en.html.gz</li>
  529.     </ul>
  530.  
  531.     <p>Here some more examples of filenames together with valid and
  532.     invalid hyperlinks:</p>
  533.  
  534.     <table border="1" cellpadding="8" cellspacing="0">
  535.       <columnspec><column width=".2"/><column width=".2"/>
  536.         <column width=".2"/></columnspec>
  537.       <tr>
  538.         <th>Filename</th>
  539.  
  540.         <th>Valid hyperlink</th>
  541.  
  542.         <th>Invalid hyperlink</th>
  543.       </tr>
  544.  
  545.       <tr>
  546.         <td><em>foo.html.en</em></td>
  547.  
  548.         <td>foo<br />
  549.          foo.html</td>
  550.  
  551.         <td>-</td>
  552.       </tr>
  553.  
  554.       <tr>
  555.         <td><em>foo.en.html</em></td>
  556.  
  557.         <td>foo</td>
  558.  
  559.         <td>foo.html</td>
  560.       </tr>
  561.  
  562.       <tr>
  563.         <td><em>foo.html.en.gz</em></td>
  564.  
  565.         <td>foo<br />
  566.          foo.html</td>
  567.  
  568.         <td>foo.gz<br />
  569.          foo.html.gz</td>
  570.       </tr>
  571.  
  572.       <tr>
  573.         <td><em>foo.en.html.gz</em></td>
  574.  
  575.         <td>foo</td>
  576.  
  577.         <td>foo.html<br />
  578.          foo.html.gz<br />
  579.          foo.gz</td>
  580.       </tr>
  581.  
  582.       <tr>
  583.         <td><em>foo.gz.html.en</em></td>
  584.  
  585.         <td>foo<br />
  586.          foo.gz<br />
  587.          foo.gz.html</td>
  588.  
  589.         <td>foo.html</td>
  590.       </tr>
  591.  
  592.       <tr>
  593.         <td><em>foo.html.gz.en</em></td>
  594.  
  595.         <td>foo<br />
  596.          foo.html<br />
  597.          foo.html.gz</td>
  598.  
  599.         <td>foo.gz</td>
  600.       </tr>
  601.     </table>
  602.  
  603.     <p>Looking at the table above, you will notice that it is always
  604.     possible to use the name without any extensions in a hyperlink
  605.     (<em>e.g.</em>, <code>foo</code>). The advantage is that you
  606.     can hide the actual type of a document rsp. file and can change
  607.     it later, <em>e.g.</em>, from <code>html</code> to
  608.     <code>shtml</code> or <code>cgi</code> without changing any
  609.     hyperlink references.</p>
  610.  
  611.     <p>If you want to continue to use a MIME-type in your
  612.     hyperlinks (<em>e.g.</em> <code>foo.html</code>) the language
  613.     extension (including an encoding extension if there is one)
  614.     must be on the right hand side of the MIME-type extension
  615.     (<em>e.g.</em>, <code>foo.html.en</code>).</p>
  616. </section>
  617.  
  618. <section id="caching"><title>Note on Caching</title>
  619.  
  620.     <p>When a cache stores a representation, it associates it with
  621.     the request URL. The next time that URL is requested, the cache
  622.     can use the stored representation. But, if the resource is
  623.     negotiable at the server, this might result in only the first
  624.     requested variant being cached and subsequent cache hits might
  625.     return the wrong response. To prevent this, Apache normally
  626.     marks all responses that are returned after content negotiation
  627.     as non-cacheable by HTTP/1.0 clients. Apache also supports the
  628.     HTTP/1.1 protocol features to allow caching of negotiated
  629.     responses.</p>
  630.  
  631.     <p>For requests which come from a HTTP/1.0 compliant client
  632.     (either a browser or a cache), the directive <directive
  633.     module="mod_negotiation">CacheNegotiatedDocs</directive> can be
  634.     used to allow caching of responses which were subject to
  635.     negotiation. This directive can be given in the server config or
  636.     virtual host, and takes no arguments. It has no effect on requests
  637.     from HTTP/1.1 clients.</p>
  638. </section>
  639.  
  640. <section id="more"><title>More Information</title>
  641.  
  642.     <p>For more information about content negotiation, see Alan
  643.     J. Flavell's <a
  644.     href="http://ppewww.ph.gla.ac.uk/~flavell/www/lang-neg.html">Language
  645.     Negotiation Notes</a>.  But note that this document may not be
  646.     updated to include changes in Apache 2.0.</p>
  647. </section>
  648.  
  649. </manualpage>
  650.