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