toby/server.php
Krzysztof Rewak 2abd83526d
#1 - skeleton polishing (#12)
* #1 - skeleton polishing

* #1 - readme
2022-01-12 08:49:22 +01:00

12 lines
230 B
PHP

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