Fixed route error in index route

This commit is contained in:
Ascendings 2015-08-30 14:32:04 -04:00
parent a8c6be2035
commit 851c209dd7

View File

@ -1,6 +1,6 @@
<?php
$app->get('/home', function() use($app) {
$app->get('/', function() use($app) {
$app->response->redirect($app->urlFor('home'), '303');