website/app/routes/pages/index.php

8 lines
124 B
PHP
Raw Normal View History

<?php
2015-08-30 14:32:04 -04:00
$app->get('/', function() use($app) {
$app->response->redirect($app->urlFor('home'), '303');
})->name('index');