如何将DocumentRoot设置为子域上的子文件夹?

时间:2016-06-06 23:08:11

标签: php .htaccess mod-rewrite apache2

我有以下结构:

/var/www/subdomain.domain.com/app1/public/index.php /var/www/subdomain.domain.com/app2/public/index.php

要访问该应用,请输入:

www.subdomain.domain.com/app1/public

但是,有点像

那样

www.subdomain.domain.com/app1和www.subdomain.domain.com/app2?

没有/ public,但仍然会重定向到该子文件夹,因为我需要index.php?

谢谢!

1 个答案:

答案 0 :(得分:0)

<Location "/app1">
    Alias "/app1/public"
</Location>

<Location "/app2">
    Alias "/app2/public"
</Location>