While working on an application rewrite, I'd like to keep the old app webroot files as a fallback, when the new files are not found.
There are 2 applications:
<VirtualHost *:80>
ServerName legacy.dev
DocumentRoot /www/legacy/webroot
</VirtualHost>
<VirtualHost *:80>
ServerName new.dev
DocumentRoot /www/new/webroot
</VirtualHost>
How could I setup the new.dev VirtualHost to retrieve the files present in the DocumentRoot, but if the file is not found, retrieve the files in the legacy.dev DocumentRoot?