[Answered ]-How to serve up dynamic content via django and php on same domain?

2👍

Basically you have to configure apache to use the default handler for the path hosting your legacy code, usually adding a <directory> or <location> section to your apache site config.

Something like:

<Location "/legacy">
    SetHandler None
</Location>

Leave a comment