From: Eric Covener Date: Mon, 19 Aug 2013 00:28:51 +0000 (+0000) Subject: Merge r1515245 from trunk: X-Git-Tag: 2.4.7~291 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5adda3984b51765072976039b450552da6c83d71;p=apache Merge r1515245 from trunk: 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/branches/2.4.x@1515246 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_negotiation.html.en b/docs/manual/mod/mod_negotiation.html.en index e08f47ce8c..6d123f2ead 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