If you check the index.php file, you will see the following ...
$mageFilename = 'app/Mage.php'; $maintenanceFile = 'maintenance.flag'; if (!file_exists($mageFilename)) { if (is_dir('downloader')) { header("Location: downloader"); } else { echo $mageFilename." was not found"; } exit; }
That is, if there is no app / Mage.php file and there is a loader folder, it will be redirected to it.
source share