From: Rich Bowen Date: Thu, 3 Mar 2016 00:54:41 +0000 (+0000) Subject: Unnecessary .*'s floating around just make this less readable. X-Git-Tag: 2.5.0-alpha~1967 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9da70936a0271aaeb697882282262026d91838cf;p=thirdparty%2Fapache%2Fhttpd.git Unnecessary .*'s floating around just make this less readable. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1733398 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/rewrite/rewritemap.xml b/docs/manual/rewrite/rewritemap.xml index c4e7df590bc..e97f9062f36 100644 --- a/docs/manual/rewrite/rewritemap.xml +++ b/docs/manual/rewrite/rewritemap.xml @@ -147,8 +147,8 @@ may be used, and give examples of each.

Redirect a URI to an all-lowercase version of itself

-RewriteMap lc "int:tolower" -RewriteRule "(.*?[A-Z]+.*)" "${lc:$1}" [R] +RewriteMap lc int:tolower +RewriteRule (.*) ${lc:$1} [R]