website/app/routes/index.php
2015-08-30 14:32:04 -04:00

8 lines
124 B
PHP

<?php
$app->get('/', function() use($app) {
$app->response->redirect($app->urlFor('home'), '303');
})->name('index');