如何更新/更改CodeIgniter中分页的base_url ?


How can I update/change the base_url of pagination in CodeIgniter?

我是CodeIgniter的新手。我已经将一些类别填充到视图中,并且类别ID通过URL传递给控制器,然后传递给模型。

我还需要集成分页。为此,我对base_url做了如下处理:

$config['base_url'] = base_url() . "kc_directory/categoryloader/";

但是当我点击分页链接时,它会返回以下链接:

localhost/kc_directory/categoryloader/2

当我将上面的链接修改为localhost/kc_directory/categoryloader/2/?value1=1时,它工作,其中value1是变量名称,1是类别ID。

我如何改变base_url来实现这一点?

更改基本url设置

配置成

$config['base_url'] = 'http://example.com/';

如果你在本地工作

配置成

$config['base_url']= 'http://localhost/YourFolderName/';

您可以在application/config/config.php:

中自定义您的基础url
$config['base_url'] = 'https://hostname.com/';

谢谢大家。固定…

$config['suffix'] ='/?value ='.$value1;$ this ->页码>初始化($ config);

这工作…

谢谢:)