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-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4ea6cf9f6eff605a046150ffb3f13fdba951f124;p=thirdparty%2Fapache%2Fhttpd.git 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 3f6ad84cd5d..7fb2791efdf 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 e7109bfe948..87b63710167 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