如果我们index
在 codeigniter 中给出一个方法/函数的名称,我们可以在不调用它的情况下转到该方法(所以我们只需要使用它的controller
名称)。
那是因为我们在以下位置指定它(或 CI 默认指定它)config.php
:
$config['index_page'] = 'index.php';
所以当我使用一些library
like时form_validation
,我不需要指定索引方法。但是,当我尝试使用该pagination
课程时遇到了问题。
我需要index
在代码中指定方法,否则pagination
不起作用(如果我单击下一个分页索引,它会给出404错误):
$config['base_url'] = site_url('/backend_umat');
所以,我必须使用:
$config['base_url'] = site_url('/backend_umat/index');
而且pagination
作品完美。
拜托,谁能给我解释一下发生了什么?我的问题解决了,但我很好奇这里发生了什么。
感谢:D