| Как более эффективно блокировать несколько IP в apache | [исправить] | 
| При наличии IP в blacklist.txt, посетителю показывается sorry.html:
   RewriteEngine on
   Rewritemap ipmap txt:/path/to/blacklist.txt 
   RewriteCond ${ipmap:%{REMOTE_ADDR}} =b
   RewriteCond %{request_uri} !=/sorry.html
   RewriteCond %{request_uri} !=/stylesheet.css
   RewriteRule .* /sorry.html                        [R,L]
/path/to/blacklist.txt
   11.22.33.44  b
   22.33.44.55  b
   33.44.55.66  b
 | 
|  | 
| 
 | 
 | | Раздел:    Корень / Администратору / Сетевые сервисы / WWW, Apache httpd / Редирект, mod_rewrite |