CI 默认的 rewrite url 中是类似这样的,例如你的 CI 根目录是在/CodeIgniter/下,你的下面的二级 url 就类似这样 http://localhost/CodeIgniter/index.php/welcome。不太好看,怎么把其中的 index.php 取掉呢?

  • 打开 apache 的配置文件,conf/httpd.conf :
1
LoadModule rewrite_module modules/mod_rewrite.so

把该行前的#去掉。

搜索 AllowOverride None(配置文件中有多处),看注释信息,将相关.htaccess 的该行信息改为 AllowOverride All。

  • 在 CI 的根目录下,即在 index.php,system 的同级目录下,建立.htaccess,直接建立该文件名的不会成功,可以先建立记事本文件,另存为该名的文件即可。内容如下(CI 手册上也有介绍):
1
2
3
RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]

如果文件不是在 www 的根目录下,例如我的是:http://www.nowamagic.net/CodeIgniter/,第三行需要改写为

1
RewriteRule ^(.*)$ /CodeIgniter/index.php/$1 [L]

另外,我的 index.php 的同级目录下还有 js 文件夹和 css 文件夹,这些需要过滤除去,第二行需要改写为:

1
RewriteCond $1 !^(index\\.php|images|js|css|robots\\.txt)
  • 将 CI 中配置文件(system/application/config/config.php)中$config[‘index_page’] = “index.php”;改成$config[‘index_page’] = “"; 。
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
/*
|--------------------------------------------------------------------------
| Index File
|-----------------------------------------------------------------------draft: false
toc: true
---
|
| 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'] = '';

ok,完成。还要记得重启 apache。 就这么简单,好好体验 CI 吧~