]> granicus.if.org Git - apache/commitdiff
rebuild
authorDaniel Gruno <humbedooh@apache.org>
Tue, 15 May 2012 06:25:38 +0000 (06:25 +0000)
committerDaniel Gruno <humbedooh@apache.org>
Tue, 15 May 2012 06:25:38 +0000 (06:25 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1338552 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/howto/access.html.en

index 55d4f3535ec28f22fbbb6f425a7973e9c5946ae6..4cc27595d2a653b8644b9726dc5e06141827221f 100644 (file)
@@ -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>