19 lines
443 B
PHP
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.';
|
|
}
|