1、要禁止所有IP访问a1.htm a2.htm a3.htm这个三个页面在location可以这样写
location ~* /(a1.htm|a2.htm|a3.htm)$ {
deny all;
condition………;
}
2、只允许指定的ip访问a1.htm a2.htm a3.htm这个三个页面,其他IP的访问都拒绝
location ~* /(a1.htm|a2.htm|a3.htm)$ {
allow 10.0.0.2;
deny all;
condition………;
}
这种设置只有ip地址为10.0.0.2的主机可以放问这三个页面,其他的ip都被拒绝了。
其他情况可以以此类推。
阅读(2183) | 评论(0) | 转发(0) |