I have two applications running in the same server and I would like to have one served from subpath in the url (i.e):
- foo.com -> /var/www/foo
- foo.com/bar -> /var/www/bar
I'm triyng to do an alias but is not working:
<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>
Do you know why this is not working?
I also tried serverpath directive without success.
Do you know how to achieve this?
Thanks in advanced.
www.as well as the root of the domain, I would say you need aServerAlias www.foo.comin there... – DaveRandom Aug 26 '11 at 17:52mod_rewriteing? – DaveRandom Aug 26 '11 at 17:56[PT]on you rewrite rules for the/blogsdirectory? – DaveRandom Aug 26 '11 at 19:09