diff options
author | Eric Covener <covener@apache.org> | 2015-03-24 14:06:33 +0100 |
---|---|---|
committer | Eric Covener <covener@apache.org> | 2015-03-24 14:06:33 +0100 |
commit | a353be6f10b8e5ee1ca52b705e695f4f53bfa97a (patch) | |
tree | 78e18efd1755a0e74a5811292f49e1a73b432ac9 | |
parent | close tag (diff) | |
download | apache2-a353be6f10b8e5ee1ca52b705e695f4f53bfa97a.tar.xz apache2-a353be6f10b8e5ee1ca52b705e695f4f53bfa97a.zip |
xform
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1668876 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | docs/manual/mod/mod_rewrite.html.en | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/docs/manual/mod/mod_rewrite.html.en b/docs/manual/mod/mod_rewrite.html.en index 54fde57a18..0cc272aeae 100644 --- a/docs/manual/mod/mod_rewrite.html.en +++ b/docs/manual/mod/mod_rewrite.html.en @@ -756,6 +756,7 @@ RewriteRule ^/$ /homepage.std.html [L]</pre> <table class="directive"> <tr><th><a href="directive-dict.html#Description">Description:</a></th><td>Defines a mapping function for key-lookup</td></tr> <tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code>RewriteMap <em>MapName</em> <em>MapType</em>:<em>MapSource</em> + <em>MapTypeOptions</em> </code></td></tr> <tr><th><a href="directive-dict.html#Context">Context:</a></th><td>server config, virtual host</td></tr> <tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Extension</td></tr> @@ -801,6 +802,11 @@ RewriteRule ^/$ /homepage.std.html [L]</pre> <pre class="prettyprint lang-config">RewriteRule ^/ex/(.*) ${examplemap:$1}</pre> + <p>The meaning of the <em>MapTypeOptions</em> argument depends on + particular <em>MapType</em>. See the + <a href="../rewrite/rewritemap.html">Using RewriteMap</a> for + more information.</p> + <p>The following combinations for <em>MapType</em> and <em>MapSource</em> can be used:</p> @@ -972,14 +978,12 @@ RewriteRule ^/$ /homepage.std.html [L]</pre> <dt><code>IgnoreContextInfo</code></dt> <dd> - <p>In versions 2.4.11 and later, when a relative substitution is made + <p>When a relative substitution is made in directory (htaccess) context and <code class="directive"><a href="#rewritebase">RewriteBase</a></code> has not been set, this module uses some extended URL and filesystem context information to change the relative substitution back into a URL. Modules such as <code class="module"><a href="../mod/mod_userdir.html">mod_userdir</a></code> and <code class="module"><a href="../mod/mod_alias.html">mod_alias</a></code> - supply this extended context info. This option disable the behavior - introduced in 2.4.11 and should only be set if all of the conditions - above are present and a substituion has an unexpected result. </p> + supply this extended context info. </p> </dd> </dl> |