%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
<?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['admin'] = 'admin/dashboard'; $route['default_controller'] = 'Home'; $route['404_override'] = 'Custom404'; $route['translate_uri_dashes'] = TRUE; $route['centers-of-excellence'] = 'CentersOfExcellence'; $route['centers-of-excellence/(:any)'] = 'CentersOfExcellence/view_coe/$1'; $route['speciality/(:any)'] = 'Speciality/view_speciality/$1'; $route['department/(:any)'] = 'Department/view_speciality/$1'; $route['meetourdoctors'] = 'MeetOurDoctors'; $route['meetourdoctors/(:any)'] = 'MeetOurDoctors/index/$1'; $route['meetourdoctors/(:any)'] = 'MeetOurDoctors/view_doctor/$1'; $route['patient-review'] = 'MeetOurDoctors/patient_review'; $route['searchmeet'] = 'MeetOurDoctors/searchmeet/$1'; $route['health-library'] = 'HealthLibrary'; $route['health-library/condition/(:any)'] = 'HealthLibrary/view_health_condition/$1'; $route['health-library/(:any)'] = 'HealthLibrary/view_health_conditions/$1'; // Thank You Page $route['thank-you'] = 'Thankyou'; /*$route['patient-story'] = 'PatientStory'; $route['patient-story/(:any)'] = 'PatientStory/view_patient_story/$1';*/ $route['patient-story'] = 'Patient'; $route['patient-story/(:any)'] = 'Patient/view_patient_story/$1'; $route['media-library'] = 'MediaLibrary'; $route['media-library/downloads'] = 'MediaLibrary/downloads'; $route['media-library/news-and-updates'] = 'MediaLibrary/news_and_updates'; $route['media-library/news-and-updates/(:any)'] = 'MediaLibrary/news_and_updates/$1'; $route['news/(:any)'] = 'News/news_history/$1'; $route['imagegallery'] = 'ImageGallery'; $route['imagegallery/album/(:any)'] = 'ImageGallery/album/$1'; $route['medicalpackage'] = 'MedicalPackage'; $route['medicalpackage/test'] = 'MedicalPackage/test'; $route['medicalpackage/(:any)'] = 'MedicalPackage/view_medical_package/$1'; $route['faq'] = 'Home/faq'; $route['world-class-facilities'] = 'Home/world_class_facilities'; $route['advanced-diagnostics'] = 'Home/advanced_diagnostics'; $route['contact-us/24hour-service'] = 'ContactUs/emergency'; $route['contact-us'] = 'ContactUs'; // Booking $route['van-booking'] = 'ContactUs/vanbooking'; $route['van-booking/review-booking'] = 'ContactUs/reviewbooking'; //$route['blogs'] = 'Blogs/view_blog'; //$route['blogs/(:any)'] = 'Blogs/view_blog/$1'; $route['blog/pages/(:any)'] = 'Blog/pages/$1'; $route['blog/(:any)'] = 'Blog/$1'; $route['blog-category'] = 'Blog/blog_category'; $route['blogcategory/(:any)'] = 'Blog/blogcategory/$1'; $route['blogcategory/(:any)/(:num)'] = 'Blog/blogcategory/$1'; $route['blog/(:any)'] = 'Blog/view_blog_article/$1'; $route['book_apk'] = 'Blog/book_apk/$1'; $route['get_enquiry'] = 'Blog/get_enquiry/'; $route['about-us'] = 'About'; //$route['about-us'] = 'Aboutus'; /*$route['about-us/overview'] = 'AboutUs/get_overview'; $route['about-us/leadership'] = 'AboutUs/get_leadership'; $route['about-us/why-choose-us'] = 'AboutUs/why_choose_us'; $route['about-us/awards-and-accreditations'] = 'AboutUs/get_awards_and_accreditations'; $route['about-us/vision-mission-identity'] = 'AboutUs/get_vision_mission_identity';*/ $route['about-us/overview'] = 'About/get_overview'; $route['about-us/leadership'] = 'About/get_leadership'; $route['about-us/why-choose-us'] = 'About/why_choose_us'; $route['about-us/awards-and-accreditations'] = 'About/get_awards_and_accreditations'; $route['about-us/vision-mission-identity'] = 'About/get_vision_mission_identity'; $route['ccavResponseHandler.php'] = 'Payment/handle_response'; //$route['terms-conditions'] = 'termscond/terms_condition'; $route['patients-visitors'] = 'PatientsVisitors'; $route['patients-visitors/visitor-guidelines'] = 'PatientsVisitors/visitor_guidelines'; $route['patients-visitors/icu-visitor-guidelines'] = 'PatientsVisitors/icu_visitor_guidelines'; $route['patients-visitors/patients-rights-responsibilities'] = 'PatientsVisitors/patients_rights_responsibilities'; $route['international-patients'] = 'InternationalPatients'; $route['pages/(:any)'] = 'CMS_Page/view_cms_page/$1'; $route['Search/(:num)'] = 'Search';