URL routing in PHP Codeigniter
问题 I am having entry in my route.php like - $route['admin/students'] = 'view_student' . Here view_student is controller name. Now when from "localhost/school/admin" page I call <a href="admin/students">Students</a> , than everything works fine; But when I change my route like - $route['/school/admin/students'] = 'view_student' , and call it from "localhost/school/admin" page as <a href="/school/admin/students">Students</a> , than 404 page is shown. Whats wrong in here? 回答1: Try this code it