我有一些控制器,如主页和欢迎,现在我的routes.php我已将默认控制器设置为:
$route['default_controller'] = 'home/index';
这很好用,现在我希望所有其他控制器转到索引的默认函数而不在URL中键入索引。
http://localhost/codeigniterapp/index.php/welcome/
为此,我在routes.php中执行了此操作:
$route['welcome'] = "welcome/index";
$route['home'] = "home/index";
$route['xxx'] = "xxx/index";
现在我不想为每个控制器做这件事,但是我想要在userguide中看到的像(:any)野外车这样的东西。 我试过了:
$route['(:any)'] = '(:any)/index';
但那没用。