LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 1830|回复: 2

centos apache 如何设置 只能域名访问,IP不能访问?

[复制链接]
发表于 2009-12-6 10:32:10 | 显示全部楼层 |阅读模式
求救:怎样在centos 系统里面 设置apache 只能域名访问,IP不能访问

完全把IP 屏蔽掉,是不出现403错误的那种
发表于 2009-12-9 10:14:46 | 显示全部楼层
<VirtualHost 192.168.1.1:80>
    ServerAdmin webadmin@abc.cn
    DocumentRoot "/tmp"
    ServerName 192.168.1.1
    <Directory "/tmp">
        Options None
        AllowOverride None
        Order allow,deny
        Deny from all
    </Directory>
    RewriteEngine on
    RewriteCond ${HTTP_HOST} !^www.abc.cn [NC]
    RewriteRule ^.*$ http://www.abc.cn [R,L]
</VirtualHost>

<VirtualHost 192.168.1.1:80>
    ServerAdmin webadmin@iseeyoo.cn
    DocumentRoot "/data/wwwroot"
    ServerName www.abc.cn
</VirtualHost>

这样就行了
回复 支持 反对

使用道具 举报

发表于 2009-12-15 16:57:15 | 显示全部楼层
谢谢楼上的分享
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表