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