ÿØÿà JFIF ÿþ; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 82.197.83.129 / Your IP : 216.73.216.166 [ Web Server : LiteSpeed System : Linux us-bos-web1456.main-hosting.eu 4.18.0-553.40.1.lve.el8.x86_64 #1 SMP Wed Feb 12 18:54:57 UTC 2025 x86_64 User : u489457460 ( 489457460) PHP Version : 7.3.33 Disable Function : system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail Domains : 2 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/u489457460/domains/syoft.com/public_html/blogs/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'] = 'admin/index'; $route['404_override'] = 'blog/blog_page_data/$1'; $route['admin-login'] = 'admin/login_page'; $route['blog/subscribe'] = 'blog/subscribe'; $route['blog/edit_blog'] = 'blog/edit_blog'; $route['blog/save_comment'] = 'blog/save_comment'; $route['blog/update_data'] = 'blog/update_data'; $route['admin/update_status'] = 'admin/update_status'; $route['blog/save_data'] = 'blog/save_data'; $route['blog/datatable'] = 'blog/datatable'; $route['blog/blog_list'] = 'blog/blog_list/$1'; $route['blog/details'] = 'blog/details/$1'; $route['blog/(:any)'] = 'blog/index/$1'; $route['courses/(:any)'] = 'courses/index/$1'; $route['course/(:any)'] = 'Course/index'; $route['contact-us'] = "Pages/contact" ; $route['about-us'] = "Pages/about_us" ; $route['e-learning'] = "Pages/e_learning" ; $route['consultancy'] = "Pages/consultancy" ; $route['exams'] = "Pages/exams" ; $route['news'] = "Pages/news" ; $route['policy'] = "Pages/disclaimer" ; $route['corporate-traning'] = "Pages/corporate_traning" ; $route['certificate_validation'] = "Pages/certificate_validation" ; $route['schedule-calendar'] = "Pages/schedule_calendar" ; $route['course-gallery'] = "Pages/course_gallery" ; $route['translate_uri_dashes'] = FALSE; $route['hello'] = 'blog/blog_page_data'; $route['([^/]+)/?'] = 'blog/blog_page_data/$1';