my setting for codeigniter pagination was this:
$this->load->library("pagination");
$config = array();
$config['base_url'] = site_url('page/stok');
$config['total_rows'] = $this->posting_model->count_all_stok();
$config['per_page'] = 10;
$config['uri_segment'] = 3;
$config['use_page_numbers'] = TRUE;
$this->pagination->initialize($config);
but how come my page url become like this if I hover to page 2:
http://localhost:8080/pmm/page/stok/10
what do I wronged here?