CodeIgniter 中英文搜索引擎:
返回列表 发帖
哈哈,我来个解决方案吧

首先修改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]


这样就可以了

TOP

不错,试试看

TOP

不测试了先,我先在用的Apache也不错啊。呵..
活着就要努力折腾,以证明自己还活着!

TOP

很好,一起学习研究一下,感谢分享.
爱生活,爱学习,爱编程,将WEB编程进行到底!

TOP

返回列表