11 lines
240 B
PHP
11 lines
240 B
PHP
<?php
|
|
|
|
use CodeIgniter\Router\RouteCollection;
|
|
|
|
/**
|
|
* @var RouteCollection $routes
|
|
*/
|
|
$routes->get('/', 'Home::index');
|
|
$routes->get('/about', 'Home::about');
|
|
$routes->get('/contact', 'Home::contact');
|
|
$routes->get('/book', 'Home::book'); |