天天看点

apache 设置.htaccess 禁止ip访问

cat 日志名 | awk '{print $1}' | sort | uniq -c | sort -k 1 -n -r |head -n 10 
   # 查看日志文件,找出访问量大的ip
以下是禁止部分地址访问,但其他IP地址可以访问的设置方法。禁止的部分IP地址可根据现场实际情况而定,以下以123.0.0.1、123.0.0.2和123.0.0.3地址为例。

Order Allow,Deny
Allow from all
Deny from 123.0.0.1 123.0.0.2 123.0.0.3

# Deny from all   # 禁止所有ip访问。