Made home route point to /home; index (/) redirects to home route

This commit is contained in:
Ascendings
2015-08-30 14:30:18 -04:00
parent edfc595918
commit aec57d2972
2 changed files with 8 additions and 1 deletions

View File

@ -1,6 +1,6 @@
<?php
$app->get('/', function() use($app) {
$app->get('/home', function() use($app) {
$app->render('home.php');