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

[讨论/交流] 如何设置CI默认访问的首页是index.html

[复制链接]
发表于 2013-2-25 16:51:49 | 显示全部楼层 |阅读模式
如何设置CI默认访问的首页是index.html
apache 配置  DirectoryIndex index.html index.php
.htaccess 文件配置:
RewriteEngine on   

RewriteCond $1 !^(index\.html|index\.php|images|include|uploads|static|a|robots\.txt)   

RewriteRule ^(.*)$ /index.php/$1 [L]

直接访问localhost不行
访问localhost/index.html 可以

发表于 2013-2-26 04:02:09 | 显示全部楼层
RewriteRule ^(.*)$ /index.php/$1 [L]
改成  RewriteRule ^(.*)$ /index.html/$1

本版积分规则