vmwenming 发表于 2013-2-25 16:51:49

如何设置CI默认访问的首页是index.html

如何设置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

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

Altair 发表于 2013-2-26 04:02:09

RewriteRule ^(.*)$ /index.php/$1 改成RewriteRule ^(.*)$ /index.html/$1
页: [1]
查看完整版本: 如何设置CI默认访问的首页是index.html