I need to use DjangoCMS and prestashop with the same URL, for example:
localhost/shop = prestashop<br> localhost/everythingElse = DjangoCMS<br>
my prestashop is installed in /var/www/prestashop , and djangoCMS is installed in /var/www/djangoCMS .
Linux Mint 14 64 bit, apache2, mod_python, wsgi ...
I tried this conf:
<VirtualHost *:80> DocumentRoot "/var/www/djangoCMS" ServerName localhost WSGIScriptAlias / "/var/www/djangoCMS/djangoCMS/apache/django.wsgi" <Directory "/var/www/djangoCMS/djangoCMS/apache"> Options +ExecCGI Order allow,deny Allow from all </Directory>
<VirtualHost *:80> DocumentRoot "/var/www/prestashop" ServerName php.localhost <Directory "/var/www/prestashop"> Options Indexes FollowSymLinks AllowOverride None Order Deny,Allow Allow from all </Directory>
Django works fine on localhost, but I can't access php.localhost: Oh! Google Chrome could not find php.localhost
source share