Tag Archives: CodeIgniter routes
SEO based urls : CodeIgniter routes
You can use this code for SEO urls //this section enables you to use some controllers $route[’admin/(:any)’] = "admin/$1"; $route[’contact/(:any)’] = "contact/$1"; $route[’auth/(:any)’] = "auth/$1"; $route[’testimonials/(:any)’] = "testimonials/$1"; //else everything in url will handle by this pro controller’s … Continue reading
Posted in CodeIgniter, Newbie, PHP
Tagged CodeIgniter routes, SEO based urls