配置apache禁止通过IP访问网站

两步:修改配置文件,重启服务。

1. 找到apache的服务配置文件,httpd.conf,最后加上修改内容:


ServerName *.*.*.*

Order Allow,Deny
Deny from all




DocumentRoot documentroot位置
ServerName www.host.cn



DocumentRoot documentroot位置
ServerName host.cn

*.*.*.*指的是你的服务器的IP地址,这里用的ipv4的格式。

documentroot位置不知道怎么写的话,可以搜索这个httpd.config 文件,里面有Document Root的值,如果不行的话,那么再改也比较好定位。

意思就是,通过IP访问,deny;通过www.host.cn域名访问,可以;通过host.cn访问,也可以。

2. 重启服务:

service httpd restart


你可能感兴趣的:(redhat,系统运维)