按URL路径更改DocumentRoot

时间:2017-06-28 12:56:24

标签: apache virtualhost

如何使用VirtualHost根据URL路径更改DocumentRoot?

我想要这个:

  • example.com投放/var/www

  • example.com/2投放/var/www2

我正在使用Alias,它提供正确的目录,但不会更改'DOCUMENT_ROOT'服务器变量。

<VirtualHost *:80>
    DocumentRoot "/var/www"
    ServerName example.com
    Alias /2 "/var/www2"
</VirtualHost>

0 个答案:

没有答案