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/15 08:24:01 UTC

svn commit: r1338550 - /httpd/httpd/trunk/docs/manual/howto/access.html.en

Author: humbedooh
Date: Tue May 15 06:24:01 2012
New Revision: 1338550

URL: http://svn.apache.org/viewvc?rev=1338550&view=rev
Log:
rebuild

Modified:
    httpd/httpd/trunk/docs/manual/howto/access.html.en

Modified: httpd/httpd/trunk/docs/manual/howto/access.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/howto/access.html.en?rev=1338550&r1=1338549&r2=1338550&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/howto/access.html.en (original)
+++ httpd/httpd/trunk/docs/manual/howto/access.html.en Tue May 15 06:24:01 2012
@@ -135,7 +135,7 @@ Require not gov
     following:</p>
 
     <pre class="prettyprint lang-config">
-&lt;If "%{HTTP_USER_AGENT} = 'BadBot'"&gt;
+&lt;If "%{HTTP_USER_AGENT} == 'BadBot'"&gt;
     Require All Denied
 &lt;/If&gt;
     </pre>
@@ -164,7 +164,7 @@ Require not gov
 
     <pre class="prettyprint lang-config">
 RewriteEngine On
-RewriteCond %{TIME_HOUR} &gt;20 [OR]
+RewriteCond %{TIME_HOUR} &gt;=20 [OR]
 RewriteCond %{TIME_HOUR} &lt;07
 RewriteRule ^/fridge - [F]
     </pre>