You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
204 B
PHP

<?php
include(__DIR__."/../vendor/autoload.php");
$file = __DIR__."/".ltrim(parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH), '/');
if (is_file($file)) {
return false;
}
(new Eater\Blog())->run();