用户
 找回密码
 入住 CI 中国社区
搜索
查看: 2247|回复: 2
收起左侧

[已解决] 有关CI的URL的问题

[复制链接]
发表于 2010-7-31 17:08:04 | 显示全部楼层 |阅读模式
http://091503.0915.dodiphp.cn/LcnMall/admin/index.php/frameset大家啊请看上面的地址,我们要怎样做才能将其中的index.php,使其变成下面的模式http://091503.0915.dodiphp.cn/LcnMall/admin/frameset

评分

参与人数 1威望 -2 收起 理由
Hex -2 违反版规

查看全部评分

发表于 2010-8-1 08:24:12 | 显示全部楼层
http://codehere.net/code_93.html
赶紧删帖吧,还写这么大字
 楼主| 发表于 2010-8-1 11:50:09 | 显示全部楼层
apache主机上是这样

view sourceprint?1 RewriteEngine on   

2 RewriteCond $1 !^(index\.php|assets|robots\.txt)   

3 RewriteRule ^(.*)$ /dirname/index.php/$1 [L]
IIS上是这样

view sourceprint?
1 [ISAPI_Rewrite]  

2 RewriteRule /(?:assets|files)/(.*) $0 [I,L]  

3 RewriteRule /robots\.txt $0 [I,L]  

4 RewriteRule /(.*) /index.php/$1 [I,L]
assets和files目录时可以通过url访问的,rotots.txt是可以通过url访问的.

然后修改config.php文件,$config['index_page'] = "";

本版积分规则