app
Fieldprotocol
config
routes
about.php
contact.php
home.php
index.php
music.php
shows.php
views
database.php
filters.php
routes.php
start.php
assets
public
.gitignore
README.md
composer.json
composer.lock
composer.phar
mode.php
8 lines
124 B
PHP
8 lines
124 B
PHP
<?php
|
|
|
|
$app->get('/', function() use($app) {
|
|
|
|
$app->response->redirect($app->urlFor('home'), '303');
|
|
|
|
})->name('index');
|