| Server IP : 68.178.202.69 / Your IP : 216.73.216.122 Web Server : Apache System : Linux 69.202.178.68.host.secureserver.net 3.10.0-1160.139.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Nov 3 13:30:41 UTC 2025 x86_64 User : ikioworld ( 1005) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/ikioworld/www/application/config/ |
Upload File : |
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
/*
| -------------------------------------------------------------------------
| URI ROUTING
| -------------------------------------------------------------------------
| This file lets you re-map URI requests to specific controller functions.
|
| Typically there is a one-to-one relationship between a URL string
| and its corresponding controller class/method. The segments in a
| URL normally follow this pattern:
|
| example.com/class/method/id/
|
| In some instances, however, you may want to remap this relationship
| so that a different class/function is called than the one
| corresponding to the URL.
|
| Please see the user guide for complete details:
|
| https://codeigniter.com/user_guide/general/routing.html
|
| -------------------------------------------------------------------------
| RESERVED ROUTES
| -------------------------------------------------------------------------
|
| There are three reserved routes:
|
| $route['default_controller'] = 'welcome';
|
| This route indicates which controller class should be loaded if the
| URI contains no data. In the above example, the "welcome" class
| would be loaded.
|
| $route['404_override'] = 'errors/page_missing';
|
| This route will tell the Router which controller/method to use if those
| provided in the URL cannot be matched to a valid route.
|
| $route['translate_uri_dashes'] = FALSE;
|
| This is not exactly a route, but allows you to automatically route
| controller and method names that contain dashes. '-' isn't a valid
| class or method name character, so it requires translation.
| When you set this option to TRUE, it will replace ALL dashes in the
| controller and method URI segments.
|
| Examples: my-controller/index -> my_controller/index
| my-controller/my-method -> my_controller/my_method
*/
$route['default_controller'] = 'home'; /*Default */
$route['about-ikio'] = 'about/about'; /* About */
$route['application-areas'] = 'application/application';
$route['exclusiverange/(:any)'] ='product/product/getcompany/$1'; /* Company Filter */
$route['application-areas/fetch_data/(:any)'] = "application/application/fetch_data/$1"; /* AJAX APPLICATION PAGE*/
$route['products'] = 'product/product'; /* Product */
$route['newLaunchProducts'] = 'product/product/newLaunchProducts'; /* Product */
$route['product/launch_data/(:any)'] = "product/product/launch_data/$1"; /* AJAX PRODUCTS PAGE*/
$route['product/fetch_data/(:any)'] = "product/product/fetch_data/$1"; /* AJAX PRODUCTS PAGE*/
$route['product/fetch_datasub/(:any)'] = "product/product/fetch_datasub/$1"; /* AJAX PRODUCTS PAGE*/
$route['product/fetch_datasub1/(:any)'] = "product/product/fetch_datasub1/$1"; /* AJAX PRODUCTS PAGE*/
$route['product/(:any)'] = 'product/product/productdetail/$1'; /*Product Detail */
$route['exclusiverangedetails/(:any)'] = 'product/product/compproductdetail/$1'; /*Company Product Detail */
$route['case-studies/fetch_data/(:any)'] = "project/project/fetch_data/$1"; /* AJAX PROJECTS PAGE*/
$route['blog/fetch_data/(:any)'] = "blog/blog/fetch_data/$1"; /* AJAX Blogs PAGE*/
$route['industry-news/fetch_data/(:any)'] = "news/news/fetch_data/$1"; /* AJAX News PAGE*/
$route['case-studies/(:any)'] = 'project/project/projectdetail/$1'; /*Project Detail */
$route['getcategory/(:any)'] ='product/product/getcategory/$1'; /* category Filter */
$route['getcategory'] ='product/product/getcategory'; /* category Filter */
$route['getsubcategory/(:any)'] ='product/product/getsubcategory/$1'; /* Subcategory Filter */
$route['getapplicationarea/(:any)'] ='application/application/getapplication/$1'; /* Application Filter */
$route['application-areas/fetch_application_data/(:any)'] = "application/application/fetch_application_data/$1"; /* AJAX Application PAGE*/
$route['contact-us'] = 'contact/contact'; /*Contact */
$route['career'] = 'career/career';
$route['faqs'] = 'faq/faq'; /*FAQ*/
$route['clearance-products'] = 'clearance/clearance'; /*FAQ*/
$route['where-to-buy'] ='buy/buy';
$route['channel-partners'] = 'channel/channel'; /* channel partner */
$route['case-studies'] = 'project/project';
$route['strategic-partners'] = 'channel/channel/strategic'; /* strategic partner */
$route['our-clients'] = 'client/client'; /* clients */
$route['downloads'] = 'download/download'; /* Downloads Page */
$route['financialreports'] = 'Home/financialreports'; /* Downloads Page */
$route['admin/delete_product'] = 'admin/product/delete_all_products';
$route['admin/make_featured'] = 'admin/product/make_featured';
$route['admin/remove_featured'] = 'admin/product/remove_featured';
$route['admin/activate'] ='admin/product/activate';
$route['admin/deactivate'] = 'admin/product/deactivate';
$route['industries-served'] = 'industry/industry'; /* Industries-served */
$route['lighting-layout-request'] = 'photometric/photometric/lightingLayoutRequest'; /* Photometric */
$route['sustainability'] = 'sustainable/sustainable';
$route['blogs'] = 'blog/blog'; /*BLOG*/
$route['blogs/(:any)'] = 'blog/blog/blog_details/$1'; /*Blog Details*/
$route['industry-news'] = 'news/news'; /*NEWS*/
$route['industry-news/(:any)'] = 'news/news/news_details/$1'; /*News Details*/
$route['press-releases'] = 'release/release'; /*press-release*/
$route['press-releases/(:any)'] = 'release/release/release_details/$1'; /*press-release*/
$route['press-releases/fetch_data/(:any)'] = "release/release/fetch_data/$1"; /* AJAX release PAGE*/
$route['events'] = 'event/event'; /*event*/
$route['quality'] = 'quality/quality'; /* Quality Page*/
$route['technology-manufacturing'] = 'technology/technology'; /* Technology & Manufacturing */
$route['privacy-policy'] = 'home/privacy';
$route['login'] = 'home/login';
$route['meet-our-team'] = 'team/team';
/*ikio-login*/
$route['admin'] = 'admin/login';
$route['admin/dashboard'] = 'admin/dashboard';
$route['admin/logout'] = 'admin/login/logout';
$route['404_override'] = '';
$route['translate_uri_dashes'] = FALSE;