summaryrefslogtreecommitdiffstats
path: root/docs/manual
diff options
context:
space:
mode:
authorRich Bowen <rbowen@apache.org>2010-12-03 00:24:37 +0100
committerRich Bowen <rbowen@apache.org>2010-12-03 00:24:37 +0100
commitdb6af62cf3b3225a291eeb4638c5fd9573208c98 (patch)
tree7e4b9d37c70f93726070582885e1cf449c2b1a0c /docs/manual
parent./build.sh all (diff)
downloadapache2-db6af62cf3b3225a291eeb4638c5fd9573208c98.tar.xz
apache2-db6af62cf3b3225a291eeb4638c5fd9573208c98.zip
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
Diffstat (limited to 'docs/manual')
-rw-r--r--docs/manual/mod/core.xml.es32
1 files changed, 32 insertions, 0 deletions
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</description>
locations. Since several different URLs may map to the same
filesystem location, such access controls may by circumvented.</p>
+ <p>The enclosed directives will be applied to the request if the path component
+ of the URL meets <em>any</em> of the following criteria:
+ </p>
+ <ul>
+ <li>The specified location matches exactly the path component of the URL.
+ </li>
+ <li>The specified location, which ends in a forward slash, is a prefix
+ of the path component of the URL (treated as a context root).
+ </li>
+ <li>The specified location, with the addition of a trailing slash, is a
+ prefix of the path component of the URL (also treated as a context root).
+ </li>
+ </ul>
+ <p>
+ 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.
+ </p>
+ <example>
+ &lt;Location /private1&gt;
+ ...
+ </example>
+ <p>
+ 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.
+ </p>
+ <example>
+ &lt;Location /private2<em>/</em>&gt;
+ ...
+ </example>
+
<note><title>When to use <directive
type="section">Location</directive></title>