标签:http apache host extra directory virtual clu sts 文件中
u 把网站配置成虚拟主机 域名为 www.my.com
具体步骤如下:比如讲apache服务器127.0.0.1 配置成 www.sohu.com
①关闭默认的 #DocumentRoot "C:/Apache2.2/htdocs“
②启用httpd-vhosts.conf文件
# Virtual hosts 启用主机配置文件
Include conf/extra/httpd-vhosts.conf
2.在windows/system32/dirvers/etc/hosts文件中加入
127.0.0.1www.hanshunping.com
3.在httpd-vhosts.conf文件中加入:
--简单配置方式
<VirtualHost 127.0.0.1:80>
DocumentRoot "d:/myweb"
DirectoryIndex my.html index.html index.htm index.php
<Directory />
Options FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
标签:http apache host extra directory virtual clu sts 文件中
原文地址:http://www.cnblogs.com/kevinggk/p/6676254.html