当$ config ['enable_query_strings'] = TRUE时,如何访问“application / controllers”子目录中的控制器

时间:2011-08-11 07:42:31

标签: php codeigniter codeigniter-routing

我的codeigniter应用程序配置:

$config['enable_query_strings'] = TRUE;
$config['uri_protocol'] = 'PATH_INFO';

所以我可以像这样访问我的应用程序:index.php?c=index&m=about

但我在“application / controllers / setting /”目录中有一个名为user.php的控制器

如果启用了mod_rewrite,我可以访问: index.php/setting/user/someMethod

但我如何像这样访问它: index.php?c=setting/user&m=someMethod 结果是 404 Not Found

日志文件说:

ERROR - 2011-08-11 08:03:07 --> 404 Page Not Found --> settinguser

修改

答案:

index.php?d=setting&c=user&m=someMethod

1 个答案:

答案 0 :(得分:1)

您可以像这样访问它们

index.php?d=setting&c=user&m=someMethod

如果您有子目录,则需要目录触发器。 它位于config.php文件中,但有experimental条评论。

$config['allow_get_array'] = TRUE;
$config['enable_query_strings'] = TRUE;
$config['controller_trigger'] = 'c';
$config['function_trigger'] = 'm';
$config['directory_trigger'] = 'd'; // experimental not currently in use