From: Eric Covener Date: Mon, 19 Aug 2013 00:28:27 +0000 (+0000) Subject: PR 55447: Elaborate on how a type map foo.html.var can be found when X-Git-Tag: 2.5.0-alpha~5178 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e0e7bdad3205ebda946c54c4e892224781456111;p=apache PR 55447: Elaborate on how a type map foo.html.var can be found when requesting foo.html (this was automatic in 1.3) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1515245 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_negotiation.html.en b/docs/manual/mod/mod_negotiation.html.en index 3f6ad84cd5..7fb2791efd 100644 --- a/docs/manual/mod/mod_negotiation.html.en +++ b/docs/manual/mod/mod_negotiation.html.en @@ -197,11 +197,18 @@ Negotiation -

A request for document.html in this directory will - result in document.html.var being consulted, and the - variant chosen which most closely matches the language preference +

A request for document.html.var in this directory will + result in choosing the variant which most closely matches the language preference specified in the user's Accept-Language request header.

+ +

If Multiviews is enabled, and MultiviewsMatch is set to "handlers" or "any", a request to + document.html will discover document.html.var and + continue negotiating with the explicit type map.

+ +

Other configuration directives, such as Alias can be used to map document.html to + document.html.var

. +
top

Multiviews

diff --git a/docs/manual/mod/mod_negotiation.xml b/docs/manual/mod/mod_negotiation.xml index e7109bfe94..87b6371016 100644 --- a/docs/manual/mod/mod_negotiation.xml +++ b/docs/manual/mod/mod_negotiation.xml @@ -181,11 +181,20 @@ Negotiation AddHandler type-map .var -

A request for document.html in this directory will - result in document.html.var being consulted, and the - variant chosen which most closely matches the language preference +

A request for document.html.var in this directory will + result in choosing the variant which most closely matches the language preference specified in the user's Accept-Language request header.

+ +

If Multiviews is enabled, and MultiviewsMatch is set to "handlers" or "any", a request to + document.html will discover document.html.var and + continue negotiating with the explicit type map.

+ +

Other configuration directives, such as Alias can be used to map document.html to + document.html.var

. +
Multiviews