1、httpd.conf中,打开vhost(取消前面的“#”),注销DocumentRoot(取消前面的“#”)
2、httpd-vhosts.conf中输入
<VirtualHost *:80>
DocumentRoot "F:/myWeb"
ServerName www.abc.net
DirectoryIndex index.html index.htm index.php
<Directory />
options FollowSymLinks
Allowoverride None
order allow,deny
Allow from all
</Directory>
</Virtualhost>
3、hosts文件中输入
127.0.0.1 www.abc.net
4、重启apache
5、成功~
6、vhosts里面还可以增加第二个第三个虚拟主机,当然hosts里也要加进去