1、先打开在 httpd.conf 中的 Include etc/extra/httpd-vhosts.conf
2、在httpd-vhosts.conf写上如下配置,Apache只会认同一个端口的第一条VirtualHost
<VirtualHost *:80>
ServerAdmin webmaster@dummy-host.example.com
DocumentRoot "/Users/php/"
</VirtualHost>
<Directory "/Users/php/">
Options Indexes FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>
使用多个端口
在 httpd.conf 中添加如,listen 86,再在httpd-vhosts.conf修改对应端口
apache VirtualHost 设置,布布扣,bubuko.com
原文地址:http://www.cnblogs.com/kenway/p/3841718.html