From d1aab0c55d98f46b85d827e73702cca0b3deb34f Mon Sep 17 00:00:00 2001 From: Daniel Gruno Date: Tue, 15 May 2012 06:23:24 +0000 Subject: [PATCH] Small inconsistency fix git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1338549 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/howto/access.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/manual/howto/access.xml b/docs/manual/howto/access.xml index 3920db755d..d78e93bb26 100644 --- a/docs/manual/howto/access.xml +++ b/docs/manual/howto/access.xml @@ -133,7 +133,7 @@ Require not gov following:

-<If "%{HTTP_USER_AGENT} = 'BadBot'"> +<If "%{HTTP_USER_AGENT} == 'BadBot'"> Require All Denied </If> @@ -162,7 +162,7 @@ Require not gov RewriteEngine On -RewriteCond %{TIME_HOUR} >20 [OR] +RewriteCond %{TIME_HOUR} >=20 [OR] RewriteCond %{TIME_HOUR} <07 RewriteRule ^/fridge - [F] -- 2.40.0