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>
Source:stackexchange.com