如何在Apache(Wamp服务器)中设置和访问多个文档根目录(目录)

时间:2014-03-30 23:30:27

标签: php apache vhosts document-root

我试图添加;

 <VirtualHost *:80>
ServerName localhost 
DocumentRoot "d:\www2\" --> tried d:\www2\
<Directory "d:\www2\">
    Options Includes Indexes FollowSymLinks
    Order allow,deny
    Allow from all
</Directory>
Directoryindex index.php index.html index.html index.htm index.shtml
AccessFileName .htaccess

到httpd-vhosts我仍然只能访问&#34; c:/ wamp / www&#34; 。我想要同时访问它们。请帮助我。

1 个答案:

答案 0 :(得分:1)

每个ServerName只能有一个文档根目录。

尝试使用其他服务器名称(如localhost2)设置虚拟主机,然后修改hosts文件以将localhost2指向本地IP(127.0.0.1)