You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by hu...@apache.org on 2012/05/14 12:37:32 UTC

svn commit: r1338141 - /httpd/httpd/branches/2.4.x/docs/manual/rewrite/vhosts.xml

Author: humbedooh
Date: Mon May 14 10:37:31 2012
New Revision: 1338141

URL: http://svn.apache.org/viewvc?rev=1338141&view=rev
Log:
backport: %{lowercase:key} should be ${lowercase:key}

Modified:
    httpd/httpd/branches/2.4.x/docs/manual/rewrite/vhosts.xml

Modified: httpd/httpd/branches/2.4.x/docs/manual/rewrite/vhosts.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/rewrite/vhosts.xml?rev=1338141&r1=1338140&r2=1338141&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/rewrite/vhosts.xml (original)
+++ httpd/httpd/branches/2.4.x/docs/manual/rewrite/vhosts.xml Mon May 14 10:37:31 2012
@@ -76,7 +76,7 @@ RewriteEngine on
 
 RewriteMap    lowercase int:tolower
 
-RewriteCond   %{lowercase:%{<strong>HTTP_HOST</strong>}}   ^www\.<strong>([^.]+)</strong>\.example\.com$
+RewriteCond   ${lowercase:%{<strong>HTTP_HOST</strong>}}   ^www\.<strong>([^.]+)</strong>\.example\.com$
 RewriteRule   ^(.*) /home/<strong>%1</strong>/www$1
 </highlight></dd>