針對apache,支持mode_rewrite可以通過在目錄先建立.htaccess去掉url中index.php
.htaccess內容如下:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f #這個重要,保證css,js正常加載
RewriteCond $1 !^(index\\.php|images|robots\\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]
然後找到application/config/config.php文件:
將$config['index_page'] = "index.php";改為$config['index_page'] = "";
*