apache 封 IP 的方法

2017-01-16 21:34:15

以Apache 2.2作为服务器:

1. 在配置文件httpd.conf里设置:

Xml代码 收藏代码

  1. Options Indexes FollowSymLinks
  2. AllowOverride None
  3. Order allow,deny
  4. Allow from all
  5. Deny from 172.17.18.80
  6. Deny from 60.99.125.110
  7. ……

2.在网站根目录下建立或打开.htaccess文件,加入如下内容

Properties代码 收藏代码

  1. Order allow,deny
  2. Allow from all
  3. Deny from 172.17.18.80
  4. Deny from 60.99.125.110
  5. ……

发表评论:

Powered by PHP 学习者(mail:517730729@qq.com)

原百度博客:http://hi.baidu.com/ssfnadn

备案号:闽ICP备17000564号-1

开源中国 PHPCHINA