当前位置: > Linux服务器 > apache >

apache 允许/ 禁止通过IP访问网站

时间:2016-07-14 13:18来源:linux.it.net.cn 作者:IT

在/etc/httpd/conf/httpd.conf 最底行加入

NameVirtualHost *:80

<VirtualHost *:80>
ServerName 218.6.xx.xx     #服务器IP
<Location />
Order Allow,Deny
Deny from all                   #如果想通过IP访问,把Deny改成Allow就成
</Location>
</VirtualHost>

(责任编辑:IT)
------分隔线----------------------------