后缀小总结
今天研究了下CI,发现修改URL后缀的方法,希望对有帮助的朋友可以看看现在时间不多,多话不说了,直接开始
//.htaccess文件
#开启Rewrite
RewriteEngine on
RewriteBase 路径
#伪静态
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)\.html$ index.php/$1
#停示显示目录列表
Options -Indexes
//config.php中:
$config['index_page'] = "";
效果图在下面,自己看URL
自己顶一个,下班回家
页:
[1]