我有两个目录/foo
和/bar
。两个目录的内容应该用作我的DocumentRoot。
我尝试添加DocumentRoot
和Alias/Directory
:
<VirtualHost *:80>
DocumentRoot "/foo"
ServerName local.php
Alias / /bar/
<Directory "/bar">
Options Includes Indexes FollowSymLinks
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
如果我删除Alias/Directory
,则仅提供/foo
中的文件。如果只有/bar
提供的文件。
如何让apache使用这两个目录?