From: Rich Bowen Date: Thu, 2 Dec 2010 23:24:37 +0000 (+0000) Subject: Update core.xml.es to latest core.xml changes. X-Git-Tag: 2.3.10~112 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=db6af62cf3b3225a291eeb4638c5fd9573208c98;p=apache Update core.xml.es to latest core.xml changes. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1041637 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/core.xml.es b/docs/manual/mod/core.xml.es index fc5550398b..11d6898957 100644 --- a/docs/manual/mod/core.xml.es +++ b/docs/manual/mod/core.xml.es @@ -2280,6 +2280,38 @@ URLs locations. Since several different URLs may map to the same filesystem location, such access controls may by circumvented.

+

The enclosed directives will be applied to the request if the path component + of the URL meets any of the following criteria: +

+ +

+ In the example below, where no trailing slash is used, requests to + /private1, /private1/ and /private1/file.txt will have the enclosed + directives applied, but /private1other would not. +

+ + <Location /private1> + ... + +

+ In the example below, where a trailing slash is used, requests to + /private2/ and /private2/file.txt will have the enclosed + directives applied, but /private2 and /private2other would not. +

+ + <Location /private2/> + ... + + When to use <directive type="section">Location</directive>