|  | 
 
 发表于 2010-8-3 11:53:53
|
显示全部楼层 
| 本帖最后由 kevinstudio 于 2010-8-3 11:59 编辑 
 写下我参考的配置
 http://codeigniter.com/wiki/Godaddy_Installaton_Tips/
 http://codeigniter.com/forums/viewthread/133292/
 
 config.php:
 .htaccess复制代码$config['index_page'] = "index.php?";
$config['uri_protocol'] = "QUERY_STRING"; 
复制代码RewriteEngine on
RewriteBase /
RewriteRule ^(system|application) - [F,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?/$1 [L]
 | 
 |