页面重定向到codeigniter中的site_url()。我在routes.php中设置了路径,如果路径错误,那么它会重定向到site_url(),因为它应该转到找不到的页面?该怎么做?
在routes.php中我已经在代码下面了。
$route['default_controller'] = "welcome";
$route['404_override'] = 'pagenotfound';
$route['profile/add_to_favorites'] = "profile/add_to_favorites";
$route['city/(:any)/welcome/venue_display/(:any)'] = "welcome/venue_display";
$route['city'] = "welcome"; `enter code here`
$route['city/(:any)'] = "welcome";
现在,如果我打开了链接http://mytest.com/city/[any dummy data],它应该重定向到pagenotfound页面。但是它来自http://mytest.com/
的数据答案 0 :(得分:0)
不,它不应该。
mytest.com/city/ [任何虚拟数据]与$route['city/(:any)']
匹配。