|
发表于 2009-6-8 08:08:37
|
显示全部楼层
哈哈,我来个解决方案吧
首先修改config.php
$config['index_page'] = "index.php?";
$config['uri_protocol'] = "QUERY_STRING";
然后加上
[ISAPI_Rewrite]
RewriteCond URL ^/(?!js|images|css|index\.php|robots\.txt).*
RewriteRule ^(.*)$ /index.php\?/$1 [L]
这样就可以了 |
|