8 lines
164 B
PHP
8 lines
164 B
PHP
<?php
|
|
|
|
require __DIR__.'/app/common.php';
|
|
|
|
if (! $container['router']->dispatch($_SERVER['REQUEST_URI'], $_SERVER['QUERY_STRING'])) {
|
|
die('Page not found!');
|
|
}
|