转到您的 application/config/config.php 从基本 url 中删除 index.php。
/*
|--------------------------------------------------------------------------
| Base Site URL
|--------------------------------------------------------------------------
|
| URL to your CodeIgniter root. Typically this will be your base URL,
| WITH a trailing slash:
|
| http://example.com/
|
| If this is not set then CodeIgniter will guess the protocol, domain and
| path to your installation.
|
*/
$config['base_url'] = 'http://localhost/franca/menkenPh';
/*
|--------------------------------------------------------------------------
| Index File
|--------------------------------------------------------------------------
|
| Typically this will be your index.php file, unless you've renamed it to
| something else. If you are using mod_rewrite to remove the page set this
| variable so that it is blank.
|
*/
$config['index_page'] = '';
然后去你的路线添加
$route['/(:any)/(:num)'] = "maincontroller/index/$1/$2";
所以方法应该是 index() 但根本没有参数只是使用 uri 类并找到这两个 uri 段
$arg1 = $this->uri->segment(3,0);
$arg2 = $this->uri->segment(4,0);
你的重写基础应该是
RewriteBase /franca/menkenph/