codeigniter でページネーション クラスを使用しようとしていますが、URL は次のようになります。
blah.com/posts/browse/page/1/item_per_page/10
URLの途中にページ番号を保持する方法はありますか?
ありがとう
編集:
$this->load->library('pagination');
$uri = $this->uri->uri_to_assoc();
$page = null;
$item_per_page = null;
if (count($uri))
{
foreach ($uri as $key => $value)
{
$$key = $value;
}
}
$config['base_url'] = base_url('posts/browse/page//item_per_page/1');
$config['uri_segment'] = 4;
$config['per_page'] = '1';