%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['default_controller'] = 'Home'; $route['home/sendVerificationSMS'] = "home/sendVerificationSMS"; $route['success'] = "payment/payment_success"; $route['failed'] = "payment/payment_failed"; $route['order/(:any)'] = "order/index/$1"; $route['doctor'] = "Doctor"; $route['doctor/(:any)'] = 'Doctor/index/$1'; $route['doctor/(:any)'] = 'Doctor/view_doctor/$1'; $route['speciality/(:any)'] = 'Speciality/view_speciality/$1'; $route['about-us'] = "About/index/$1"; $route['about-us/vision-mission'] = "About/getvisionandmission"; $route['health-library'] = 'HealthLibrary'; $route['health-library-detail'] = 'HealthLibrary/view'; $route['health-library/condition/(:any)'] = 'HealthLibrary/view_health_condition/$1'; $route['health-library/(:any)'] = 'HealthLibrary/view_health_conditions/$1'; $route['career'] = "career"; $route['feedback'] = "feedback"; $route['faq'] = "common/faq"; $route['why-choose-us'] = "common/whychooseus"; $route['media'] = "common/mediacoverage"; //$route['media-library'] = "common/medialibrary"; $route['medical-library'] = "common/medicallibrary"; $route['advanced-diagnostics'] = "common/advanceddiagnostics"; $route['news-updates'] = "common/NewsUpdates"; $route['news-updates/(:any)'] = "common/NewsUpdatesdetail/$1"; $route['testimonials'] = "common/testimonial"; $route['medical-package'] = 'MedicalPackage'; $route['medical-package/(:any)'] = 'MedicalPackage/view_medical_package/$1'; // $route['medical-package'] = "common/medicalpackage"; // $route['medical-package-detail'] = "common/medicalpackagedetail"; $route['patient-experience'] = "common/patientexperience"; $route['patient-experience-detail'] = "common/patientexperiencedetail"; $route['patients-visitors'] = "common/patientsvisitors"; $route['centre-of-excellence'] = 'centreofexcellence'; $route['centre-of-excellence/(:any)'] = 'centreofexcellence/view_coe/$1'; $route['pages/terms-conditions'] = "common/termsandcondition"; $route['pages/privacy-policy'] = "common/privacypolicy"; $route['about-us/leadership'] = "leadership/index"; $route['contact-us'] = "contact"; $route['patient-experience'] = 'Patient'; $route['patient-experience/(:any)'] = 'Patient/view_patient_story/$1'; // $route['vision-mission'] = "common/visionandmission"; $route['international-patients'] = "InternationalPatients"; $route['awards-and-accreditations'] = "common/awardandaccreditation"; $route['events'] = "common/events"; $route['events/(:any)'] = "common/eventsdetail/$1"; $route['empanelments'] = "common/empanelments"; $route['second-opinion'] = "secondopinion"; $route['circulars'] = "common/circulars"; // admin $route['admin'] = 'admin/dashboard'; // $route['admin'] = "admin/login"; // $route['facultylogin'] = "admin/facultylogin"; //$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['404_override'] = ''; $route['translate_uri_dashes'] = FALSE;