自己测试apache绑定域名

来源:互联网 发布:51单片机助手 编辑:程序博客网 时间:2024/05/16 04:01
<VirtualHost 124.173.68.224>
    ServerName kennyma.com.cn
    DocumentRoot D:/site/Apache2.2/htdocs/kennyma
<Directory "D:/site/Apache2.2/htdocs/kennyma"> 
    Options -Indexes FollowSymLinks Includes
    AllowOverride All
    Order allow,deny
    Allow from all
</Directory>
</VirtualHost>
<VirtualHost 124.173.68.224>
    ServerName www.kennyma.com.cn
    DocumentRoot D:/site/Apache2.2/htdocs/kennyma
<Directory "D:/site/Apache2.2/htdocs/kennyma">
    Options -Indexes FollowSymLinks Includes
    AllowOverride All
    Order allow,deny
    Allow from all
</Directory>
</VirtualHost>
0 0