-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.php
35 lines (26 loc) · 866 Bytes
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php
// Taller Silex - Usuarios
// =======================
// si la ruta termina en "/", cambia la ruta a "/index.php"
if ( substr($_SERVER["REQUEST_URI"], -1) == '/'
&& substr($_SERVER["REQUEST_URI"], -10) != 'index.php/') {
header("Location: index.php");
die();
}
// uso del autoload generado por composer
$app = require_once __DIR__.'/app/app.php';
// Ruta por defecto
// ================
// la ruta "/" redirige al formulario de login
$app->get('/', function() use($app) {
// redirige el navegador a "/login"
return $app->redirect( $app['url_generator']->generate('login'));
});
// Controladores por cada módulo
// =============================
$app->mount('/login', new App\Login\LoginController());
$app->mount('/users', new App\Users\UsersController());
// Corre la Aplicación
// ===================
$app['debug'] = true;
$app->run();