Files
CHIEFSOFT\ameye d2217b1591 New Coregrade
2024-10-10 18:51:31 -04:00

80 lines
2.5 KiB
PHP

<?php
namespace Config;
// Create a new instance of our RouteCollection class.
$routes = Services::routes();
// Load the system's routing file first, so that the app and ENVIRONMENT
// can override as needed.
if (file_exists(SYSTEMPATH . 'Config/Routes.php'))
{
require SYSTEMPATH . 'Config/Routes.php';
}
/**
* --------------------------------------------------------------------
* Router Setup
* --------------------------------------------------------------------
*/
$routes->setDefaultNamespace('App\Controllers');
$routes->setDefaultController('Home');
$routes->setDefaultMethod('index');
$routes->setTranslateURIDashes(false);
$routes->set404Override();
$routes->setAutoRoute(true);
/*
* --------------------------------------------------------------------
* Route Definitions
* --------------------------------------------------------------------
*/
// We get a performance increase by specifying the default
// route since we don't have to scan directories.
$routes->get('/', 'Home::index');
$routes->get('/about', 'Home::about');
$routes->get('/security', 'Home::security');
$routes->get('/terms', 'Home::terms');
$routes->get('/privacy', 'Home::privacy');
$routes->get('/contact', 'Home::contact');
$routes->get('/blog-details', 'Home::blogdetails');
$routes->get('/blog-details/(:alphanum)', 'Home::blogdetails/$');
$routes->get('/old', 'Home::indexold');
$routes->get('/auth', 'Home::login');
$routes->get('/newuser', 'Home::newuser');
$routes->get('/resetpass', 'Home::resetpass');
$routes->post('/resetpass', 'Home::resetpass');
$routes->get('/tools', 'Tools::index');
$routes->get('/blog', 'Home::blog');
$routes->get('/vmedia/show', 'Tools::vmedia');
$routes->get('/printables/(:alphanum)', 'Printables::show/$1', ['as' => 'printables_request_show']);
$routes->get('/mypage/(:alphanum)', 'Mypage::show/$1');
$routes->get('/page/(:alphanum)', 'Mypage::show/$1');
/*
* --------------------------------------------------------------------
* Additional Routing
* --------------------------------------------------------------------
*
* There will often be times that you need additional routing and you
* need it to be able to override any defaults in this file. Environment
* based routes is one such time. require() additional route files here
* to make that happen.
*
* You will have access to the $routes object within that file without
* needing to reload it.
*/
if (file_exists(APPPATH . 'Config/' . ENVIRONMENT . '/Routes.php'))
{
require APPPATH . 'Config/' . ENVIRONMENT . '/Routes.php';
}