2025-08-10 18:09:07 +02:00

19 lines
443 B
PHP

<?php
/**
* Laravel - A PHP Framework For Web Artisans
*
* This file redirects to the public directory
*/
// Redirect to public directory
$publicPath = __DIR__ . '/public';
if (file_exists($publicPath . '/index.php')) {
require_once $publicPath . '/index.php';
} else {
// Fallback if public/index.php doesn't exist
http_response_code(500);
echo 'Laravel public directory not found. Please check your installation.';
}