12 lines
265 B
PHP
12 lines
265 B
PHP
<?php
|
|
require_once __DIR__ . '/../vendor/autoload.php';
|
|
|
|
$uri = $_SERVER['REQUEST_URI'];
|
|
|
|
if ($uri === '/' || $uri === '/index.php') {
|
|
(new \Aidan\Tinytalk\Controller\HomeController())->index();
|
|
} else {
|
|
http_response_code(404);
|
|
echo "404 Not Found";
|
|
}
|