isActualFile($storagePath = $sitePath.'/storage/app/public'.$storageUri)) { return $storagePath; } return false; } /** * Get the fully resolved path to the application's front controller. * * @param string $sitePath * @param string $siteName * @param string $uri * @return string */ public function frontControllerPath($sitePath, $siteName, $uri) { // Shortcut for getting the "local" hostname as the HTTP_HOST if (isset($_SERVER['HTTP_X_ORIGINAL_HOST'], $_SERVER['HTTP_X_FORWARDED_HOST'])) { $_SERVER['HTTP_HOST'] = $_SERVER['HTTP_X_FORWARDED_HOST']; } return $sitePath.'/public/index.php'; } }