我尝试了很多但似乎无法弄清楚这一点,任何帮助表示赞赏。我在 codeigniter 中的分页在第一页上完美工作,但是当我转到其他页面时,图像既不显示 css。似乎 codeigniter 无法识别指向我的资产文件夹的链接。这是我的代码:
public function index()
{
$config['base_url']='http://localhost/CodeIgniter/index.php/program/index';
$config['total_rows']=$this->listeprogram->count();
$config['per_page']=12;
$config['first_link'] = 'Première page';
$config['last_link'] = 'Dernière page';
$config['next_link']='Suivante';
$config['prev_link']='Précédente';
$this->pagination->initialize($config);
$data = array();
$data['rows'] = $this->db->get('programs',$config['per_page'],$this->uri->segment(10));
}