From 851c209dd76dd3690a2416e89dfd0a07cb9a7489 Mon Sep 17 00:00:00 2001 From: Ascendings Date: Sun, 30 Aug 2015 14:32:04 -0400 Subject: [PATCH] Fixed route error in index route --- app/routes/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/routes/index.php b/app/routes/index.php index 77c991f..5a562fb 100644 --- a/app/routes/index.php +++ b/app/routes/index.php @@ -1,6 +1,6 @@ get('/home', function() use($app) { +$app->get('/', function() use($app) { $app->response->redirect($app->urlFor('home'), '303');