我有两个应用程序在同一台服务器上运行,我想从 url 中的子路径提供一个(即):
- foo.com -> /var/www/foo
- foo.com/bar -> /var/www/bar
我正在尝试使用别名但不工作:
<VirtualHost *:80>
ServerAdmin webmaster@foo.com
ServerName foo.com
DocumentRoot /webapps/foo/current/public
<Directory /webapps/foo/current/public>
AllowOverride all
Options -MultiViews
</Directory>
RailsEnv staging
Alias /blog /webapps/blog/current
<Directory /webapps/blog/current>
allow from all
Options +Indexes
</Directory>
你知道为什么这不起作用吗?
我也尝试了 serverpath 指令,但没有成功。
你知道如何实现这一目标吗?
提前致谢。