 index.php | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/index.php b/index.php
index a44e5c5..9c4f0bd 100644
--- a/index.php
+++ b/index.php
@@ -25,6 +25,12 @@
       // Handle the response object.
       ->prepare($request)->send();
   $kernel->terminate($request, $response);
+
+
+  $container = $kernel->getContainer();
+  $router = $container->get('router');
+  $router->matchRequest($request);
+  exit;
 }
 catch (HttpExceptionInterface $e) {
   $response = new Response($e->getMessage(), $e->getStatusCode());
