使用.htaccess屏蔽ip段访问

如果在网站日志中发现有一些异常的流量,恶意的访问,就可以使用.htaccess规则来屏蔽这些IP或IP段的访问。

屏蔽特定的IP:

order allow,deny
allow from all
deny from 183.88.212.184

屏蔽多个IP:

order allow,deny
allow from all
deny from 183.88.212.184
deny from 5.22.208.41
deny from 103.137.91.250

屏蔽整个IP段:

order allow,deny
allow from all
deny from 183.88.212.0

屏蔽IP段中范围内IP:

order allow,deny
allow from all
deny from 183.88.212.100/200

屏蔽规则是写入.htaccess文件中的,如果在您的网站根目录下没有看到这个文件,请参考创建.htaccess文件教程

1 Star2 Stars3 Stars4 Stars5 Stars (无评分)
Loading...

分类:其他 |

在线客服

QQ客服

微信客服