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