apache VirtualHost 设置

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>

使用多个端口

3、在 httpd.conf 中添加如,listen 86,再在httpd-vhosts.conf修改对应端口

注意:最后还需要在httpd.conf找到DocumentRoot下一行,去掉限制路径,否则只能映射默认端口下的路径,如下图

posted @ 2014-07-13 21:45  Kenway-Lau  阅读(319)  评论(0编辑  收藏  举报