summaryrefslogtreecommitdiffstats
path: root/docs/manual/rewrite/rewritemap.xml
diff options
context:
space:
mode:
authorRich Bowen <rbowen@apache.org>2010-07-21 20:24:12 +0200
committerRich Bowen <rbowen@apache.org>2010-07-21 20:24:12 +0200
commit4f5a41f04b513e81d9422fc014352f18eaedf7bd (patch)
tree4d3b5f92c71e5207a6d129e65ac6dad588d8249d /docs/manual/rewrite/rewritemap.xml
parentUpdate SSL cipher suite and add example for SSLHonorCipherOrder. (diff)
downloadapache2-4f5a41f04b513e81d9422fc014352f18eaedf7bd.tar.xz
apache2-4f5a41f04b513e81d9422fc014352f18eaedf7bd.zip
Fixes a non-working example in the int RewriteMap section.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@966346 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/rewrite/rewritemap.xml')
-rw-r--r--docs/manual/rewrite/rewritemap.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/manual/rewrite/rewritemap.xml b/docs/manual/rewrite/rewritemap.xml
index de53017cf2..4d50b20177 100644
--- a/docs/manual/rewrite/rewritemap.xml
+++ b/docs/manual/rewrite/rewritemap.xml
@@ -327,7 +327,7 @@ by many requests.
<example><title>Redirect a URI to an all-lowercase version of itself</title>
RewriteMap lc int:tolower<br />
- RewriteRule (.*[A-Z]+.*) lc($1) [R]
+ RewriteRule (.*[A-Z]+.*) ${lc:$1} [R]
</example>
<note>