reports/public/router.php

11 lines
222 B
PHP
Raw Normal View History

2026-06-19 17:23:25 +03:00
<?php declare(strict_types=1);
$path = parse_url($_SERVER['REQUEST_URI'] ?? '/', PHP_URL_PATH) ?: '/';
$file = __DIR__ . $path;
if ($path !== '/' && is_file($file)) {
return false;
}
require __DIR__ . '/index.php';