在codiginetor中,用户可以输入url,但它应该调用默认控制器

时间:2013-12-23 16:11:39

标签: php codeigniter

在我的codeigniter项目中,如果我运行我的localhost就像localhost /项目名称/键入什么,所以我想要调用默认控制器

2 个答案:

答案 0 :(得分:2)

在你的application / config / routes.php中:

$route['default_controller'] = 'controllername';
$route['(:any)'] = 'controllername';

此处还有其他可能的选项,但这会向默认控制器发送任何内容。

答案 1 :(得分:1)

转到路线文件

./application/config/routes.php

并添加

$route['(:any)'] = "controller";

这将匹配所有路线。

文档here.