如何设置CI默认访问的首页是index.html
如何设置CI默认访问的首页是index.htmlapache 配置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 可以
RewriteRule ^(.*)$ /index.php/$1 改成RewriteRule ^(.*)$ /index.html/$1
页:
[1]