gpt4 book ai didi

Codeigniter 分页 - 404 错误

转载 作者:行者123 更新时间:2023-12-02 21:51:58 24 4
gpt4 key购买 nike

我正在尝试对主页上的博客文章使用分页:

Controller :

public function index()
{
$data['view'] = "home";

/** Pagination **/
$config['base_url'] = base_url().'home/';
$config['total_rows'] = $this->Blog_model->count_articles();
$config['per_page'] = 2;
$config['uri_segment'] = 2;

$this->pagination->initialize($config);

$data['paginate'] = $this->pagination->create_links();
$data['articles'] = $this->Blog_model->get_articles($config['per_page'],$this->uri->segment(2));

$this->load->view('template', $data);

}

信息检索和分页似乎一切正常,但是,当我单击数字链接或下一个链接时,我收到 404 Not Found 错误。

我假设这与 URI 段有关?

正在加载的 URL 是 http://www.example.com/home/2第二页。

最佳答案

您还可以添加路由规则,例如:

$route['home/(:num)'] = 'yourhomecontroller';

然后你可以在没有索引或任何方法的情况下使用它,num告诉它将home/后面带有数字的任何url路由到home的索引

关于Codeigniter 分页 - 404 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10901864/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com