controllers.php 245 B

123456789101112
  1. <?php
  2. use Silex\Application;
  3. const BACKBONE = '/client/index.html';
  4. $app->get('/', function (Application $app) {
  5. return $app->redirect(BACKBONE);
  6. });
  7. $app->get('/server', function (Application $app) {
  8. return $app->redirect(BACKBONE);
  9. });