Return-Path: Delivered-To: apmail-apache-docs-archive@apache.org Received: (qmail 46826 invoked by uid 500); 1 Oct 2001 08:23:26 -0000 Mailing-List: contact apache-docs-help@apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: list-post: Reply-To: apache-docs@apache.org Delivered-To: mailing list apache-docs@apache.org Received: (qmail 46802 invoked by uid 500); 1 Oct 2001 08:23:26 -0000 Delivered-To: apmail-httpd-docs-1.3-cvs@apache.org Date: 1 Oct 2001 08:21:44 -0000 Message-ID: <20011001082144.74062.qmail@icarus.apache.org> From: martin@apache.org To: httpd-docs-1.3-cvs@apache.org Subject: cvs commit: httpd-docs-1.3/htdocs/manual/misc rewriteguide.html X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N martin 01/10/01 01:21:44 Modified: htdocs/manual/misc rewriteguide.html Log: Undo the change in Rev.1.10. As Ralf pointed out, the '=' prefix changes the Regex-Matching to a Plain-Text Matching. Submitted by: "Ralf S. Engelschall" Revision Changes Path 1.13 +2 -2 httpd-docs-1.3/htdocs/manual/misc/rewriteguide.html Index: rewriteguide.html =================================================================== RCS file: /home/cvs/httpd-docs-1.3/htdocs/manual/misc/rewriteguide.html,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- rewriteguide.html 2001/09/27 16:49:16 1.12 +++ rewriteguide.html 2001/10/01 08:21:44 1.13 @@ -1714,8 +1714,8 @@

   RewriteEngine on
   RewriteMap    hosts-deny  txt:/path/to/hosts.deny
  -RewriteCond   ${hosts-deny:%{REMOTE_HOST}|NOT-FOUND} !NOT-FOUND [OR]
  -RewriteCond   ${hosts-deny:%{REMOTE_ADDR}|NOT-FOUND} !NOT-FOUND
  +RewriteCond   ${hosts-deny:%{REMOTE_HOST}|NOT-FOUND} !=NOT-FOUND [OR]
  +RewriteCond   ${hosts-deny:%{REMOTE_ADDR}|NOT-FOUND} !=NOT-FOUND
   RewriteRule   ^/.*  -  [F]
   

--------------------------------------------------------------------- To unsubscribe, e-mail: apache-docs-unsubscribe@apache.org For additional commands, e-mail: apache-docs-help@apache.org