CodeIgniter(3.1.4)框架-url重写,去除index.php
1.开启Apache重写url模块。
*相应内容可百度。
2.在项目根目录下创建【.htaccess】文件,其内容如下:
RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php/$1 [L]
3.修改 application/config/config.php文件:
*将此项设置为空。