From: Joshua Slive Date: Mon, 21 Apr 2003 14:57:50 +0000 (+0000) Subject: Update transforms now that xslt is working again. X-Git-Tag: pre_ajp_proxy~1815 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8cdf4feaddabc5feccd518d6dccbc3a8268c1791;p=thirdparty%2Fapache%2Fhttpd.git Update transforms now that xslt is working again. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@99475 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/core.html.en b/docs/manual/mod/core.html.en index c752be3fa2b..fa3c6b4ab3f 100644 --- a/docs/manual/mod/core.html.en +++ b/docs/manual/mod/core.html.en @@ -1708,13 +1708,25 @@ URLs limits the scope of the enclosed directives by URL. It is similar to the <Directory> directive, and starts a subsection which is terminated with a - </Location> directive. <Location> sections are processed in the + </Location> directive. <Location> sections are processed in the order they appear in the configuration file, after the <Directory> sections and .htaccess files are read, and after the <Files> sections.

-

Note that URLs do not have to line up with the filesystem at - all, it should be emphasized that <Location> operates completely - outside the filesystem.

+

<Location> sections operate + completely outside the filesystem. This has several consequences. + Most importantly, <Location> + directives should not be used to control access to filesystem + locations. Since several different URLs may map to the same + filesystem location, such access controls may by circumvented.

+ +

When to use <Location>

+ +

Use <Location> to apply + directives to content that lives outside the filesystem. For + content that lives in the filesystem, use <Directory> and <Files>. An exception is + <Location />, which is an easy way to + apply a configuration to the entire server.

+

For all origin (non-proxy) requests, the URL to be matched is a URL-path of the form /path/. No scheme, hostname, diff --git a/docs/manual/mod/mod_dav.html.en b/docs/manual/mod/mod_dav.html.en index 18275cfc28c..ad867f69e3c 100644 --- a/docs/manual/mod/mod_dav.html.en +++ b/docs/manual/mod/mod_dav.html.en @@ -42,6 +42,8 @@

Topics

See also