Files
JS/webseite-react-php/slim-php/public/router.php
Philippe Torrel 0bdbf245ee
2026-08-31 12:03:08 +02:00

12 lines
220 B
PHP

<?php
declare(strict_types=1);
$uri = urldecode(parse_url($_SERVER['REQUEST_URI'] ?? '/', PHP_URL_PATH) ?: '/');
if ($uri !== '/' && file_exists(__DIR__ . $uri)) {
return false;
}
require __DIR__ . '/index.php';