Run both Django and PHP application in Apache
问题 I'm trying to host Django and PHP(wordpress) app in Apache domain.com, should point to Django app domain.com/wp, should point to wordpress app Here is my 000-default.conf in /etc/apache2/sites-available <VirtualHost *:80> DocumentRoot "/var/www/html/wp" ServerName domain.com/wp Alias /wp /var/www/html/wp <Directory /var/www/html/wp> Options Indexes FollowSymLinks AllowOverride None Order Deny,Allow Allow from all </Directory> </VirtualHost> <VirtualHost *:80> Alias /static /var/www/html