]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Fixes a non-working example in the int RewriteMap section.
authorRich Bowen <rbowen@apache.org>
Wed, 21 Jul 2010 18:24:12 +0000 (18:24 +0000)
committerRich Bowen <rbowen@apache.org>
Wed, 21 Jul 2010 18:24:12 +0000 (18:24 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@966346 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/rewrite/rewritemap.xml

index de53017cf28832cf7e36f7f4d3ae5d0c4f39f7fc..4d50b20177ce476629b54d782bc5c9cb54b65c08 100644 (file)
@@ -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>