具有两个文档根目录的Apache虚拟主机

时间:2014-11-24 13:30:41

标签: apache config

我有两个目录/foo/bar。两个目录的内容应该用作我的DocumentRoot。

我尝试添加DocumentRootAlias/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使用这两个目录?

0 个答案:

没有答案