使用域名访问,禁止通过服务器ip地址访问,过滤客户端ip

httpd-vhosts.conf


<VirtualHost *:80>

   DocumentRoot "d:/wampwww/"

   ServerName  xxx.xxx.xxx.xxx

    <Directory />

    Options FollowSymLinks

    #不许可别人修改我们的页面

    AllowOverride None

    #设置访问权限

    Order allow,deny

    Deny from All

    </Directory>   

</VirtualHost>


Order allow,deny

Deny from All

Deny from All



你可能感兴趣的:(虚拟主机,禁用)