ip限制
最后更新于:2022-04-02 02:55:10
[TOC]
## 简单版本
在 .htaccess
不需要写在xml 中
```
Order Allow,Deny
Allow from all
Deny from 192.168.0.203 192.168.0.204
```
## ip限制
在httpd中(重启)
`RewriteMap hosts-deny txt:D:/wamp/hosts.deny`
在hosts-deny中
` 192.163.3.68 deny`
在.htaccess
```
RewriteEngine on
RewriteCond %{hosts-deny:%{REMOVE_ADDR}|NOTFOUND} deny [OR]
RewriteCond %{hosts-deny:%{HTTP_HOST}|NOTFOUND} deny
RewriteRule ^ - [F]
```
';