一、多个站点设置,
NameVirtualHost *:80
<virtualhost *:80>
ServerName www.server110.com
DocumentRoot www/one
</virtualhost>
<virtualhost *:80>
ServerName www.b.com
DocumentRoot www/two
</virtualhost>
二、多个虚拟目录的设置,只要增加多条同样的字段就可以了。
Alias /test "E:www"
<Directory "E:www">
AllowOverride All
Options Indexes FollowSymLinks Includes
Order allow,deny
Allow from all
</Directory>
配置文件的内容为添加名为test的虚拟目录,并指向E:www目录,其余配置信息一般采用默认即可。
三、多端口设置,
找到Listen配置行下面加:Listen 8080
<virtualhost *:8080>
ServerName www.c.com
DocumentRoot www/newport
</virtualhost>
总结:以上方法可以灵活运用。