apache 封 IP 的方法
2017-01-16 21:34:15
以Apache 2.2作为服务器:
1. 在配置文件httpd.conf里设置:
Xml代码
- Options Indexes FollowSymLinks
- AllowOverride None
- Order allow,deny
- Allow from all
- Deny from 172.17.18.80
- Deny from 60.99.125.110
- ……
2.在网站根目录下建立或打开.htaccess文件,加入如下内容
Properties代码
- Order allow,deny
- Allow from all
- Deny from 172.17.18.80
- Deny from 60.99.125.110
- ……
发表评论: