我想按照文档中的建议将我的 CodeIgniter 安装的基本 URL 设置为localhost/ci/
带有斜杠。
我试试这个:
$config['base_url'] = 'http://localhost/ci/';
而且我的分页链接不是我所期望的。基本上,它们都坏了。
但是,我试试这个:
$config['base_url'] = 'http://localhost/ci/index.php/';
有了这套
$config['index_page'] = 'index.php';
我的分页链接现在很好。这是,
$config['base_url'] = 'http://localhost/ci/index.php/';
编写基本 URL 的正确方法?