I have a PHP application that uses an MVC framework, with Apache on Linux.
Let us say it lives here http://example.com on the web and here /srv/www/example.com on my server.
I want http://example.com/blog to use a WordPress install from here /srv/www/blog and all the root web traffic to go to my MVC app (as shown above)
How can this be done?
Alias-- http://httpd.apache.org/docs/current/mod/mod_alias.html#alias , but you cannot do this in .htaccess, it has to be server config/virtual host. – LazyOne Apr 18 '12 at 08:50