如何使所有控制器路由默认为routes.php文件中的索引

时间:2017-09-21 17:13:30

标签: php codeigniter

我有一些控制器,如主页欢迎,现在我的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';

但那没用。

1 个答案:

答案 0 :(得分:0)