From bc98748c0d5b1e1c4d08f16b58db8aea9b5fb5ce Mon Sep 17 00:00:00 2001 From: Frederic Guillot Date: Sun, 12 Jul 2015 10:38:42 -0400 Subject: Start to implement url rewrite (nice urls) --- index.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'index.php') diff --git a/index.php b/index.php index 4c49416f..7c5fe6d1 100644 --- a/index.php +++ b/index.php @@ -2,7 +2,6 @@ require __DIR__.'/app/common.php'; -use Core\Router; - -$router = new Router($container); -$router->execute(); +if (! $container['router']->dispatch($_SERVER['REQUEST_URI'], $_SERVER['QUERY_STRING'])) { + die('Page not found!'); +} -- cgit v1.2.3