You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by co...@apache.org on 2005/11/30 11:11:40 UTC

svn commit: r349917 - /httpd/httpd/trunk/docs/manual/env.xml

Author: colm
Date: Wed Nov 30 02:11:35 2005
New Revision: 349917

URL: http://svn.apache.org/viewcvs?rev=349917&view=rev
Log:
Escape the dots in the regular expression.

Modified:
    httpd/httpd/trunk/docs/manual/env.xml

Modified: httpd/httpd/trunk/docs/manual/env.xml
URL: http://svn.apache.org/viewcvs/httpd/httpd/trunk/docs/manual/env.xml?rev=349917&r1=349916&r2=349917&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/env.xml (original)
+++ httpd/httpd/trunk/docs/manual/env.xml Wed Nov 30 02:11:35 2005
@@ -430,7 +430,7 @@
         in limited circumstances. We assume that all your images are in
         a directory called /web/images.</p>
     <example><pre>
-SetEnvIf Referer "^http://www.example.com/" local_referal
+SetEnvIf Referer "^http://www\.example\.com/" local_referal
 # Allow browsers that do not send Referer info
 SetEnvIf Referer "^$" local_referal
 &lt;Directory /web/images&gt;