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