1、打开apache配置文件httpd.conf找到LoadModule rewrite_module modules/mod_rewrite.so这行,把该行前的#去掉。保存该文件
2、进入到CI根目录,新建.htaccess文件,输入
RewriteEngine on
RewriteCond $1 !^(index\.php|style|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]
3、最后到CI目录下的config文件夹下,在config.php文件中,将$config['index_page'] = "index.php"; 修改为 $config['index_page'] = "";
就可以了 ,转自百度经验