我正在尝试在一个虚拟主机配置中嵌套一个Location指令,如下所示:
<VirtualHost *:80>
ServerName mysite.com
DocumentRoot /home/deployer/apps/mysite/current/public
ErrorLog /var/log/prod.log
<Location "/shop">
DocumentRoot /home/deployer/apps/mysite_shop/current/public
ErrorLog /var/log/prod.log
</Location>
</VirtualHost>
我想要的是访问mysite.com/shop,并将其指向另一个应用程序。这可能吗?还有另一种方法吗?我收到一个错误,因为显然Location指令不接受DocumentRoot。
感谢。