Reconfiguring Apache to serve website root from new php source and specific sub-urls from old django site
How do I make a django website (in a apache/mod_wsgi/django setup) which is configured to serve from the root url, serve only for specific sub-url but not the root url? The root url shall be served from a new source (php). All this with a minimum of reconfiguration. Currently the condensed virtualhost config looks like this <VirtualHost *:80> ServerAdmin admin@mysite.com ServerName mysite.com # mappings to django WSGIScriptAlias / /opt/mysite/mysite.wsgi <Directory /opt/mysite> Order allow,deny Allow from all </Directory> # mappings to wordpress Alias /wp/ /var/www/mysiteWP/ <Location "/var