|
初学CI,今天尝试设置伪静态时发现问题,在设置了路由与去除index.php以后,在config.php进行如下设置:$config['url_suffix'] = '.html';
结果生成的URL却是这样的:http://127.0.0.1/ci/c.html/2,我的预想应该是生成如http://127.0.0.1/ci/c/2.html这样的地址,但是不知道问题出在哪里,求大神答疑。
其他相关设置:【route.php】:
$route['a/(:any)'] = 'index_home/article/$1';
$route['c/(:any)'] = 'index_home/category/$1';
【.htaccess】:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /ci/index.php/$1 [L]
|
|