CI 框架 伪静态设置 去掉index.php

Posted super-ldc

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CI 框架 伪静态设置 去掉index.php相关的知识,希望对你有一定的参考价值。

.htaccess文件修改

DirectoryIndex index.php

RewriteEngine on
RewriteBase /
RewriteCond %REQUEST_FILENAME !-f
RewriteCond %REQUEST_FILENAME !-d
RewriteCond $1 !^(index\.php|images|themes|uploads|uploads_thumb|robots\.txt)

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

 

config/config.php中:

$config[‘uri_protocol‘] = "AUTO"; //或者是PATH_INFO

 

以上是关于CI 框架 伪静态设置 去掉index.php的主要内容,如果未能解决你的问题,请参考以下文章

thinkPHP伪静态,如何去掉index.php呢?

typecho伪静态如何去掉index.php

Yii IIS8下使用伪静态Url Rewrite去掉index.php

CodeIgniter 框架在Apache服务器下去掉index.php 总结

lnmp 设置ci pathinfo和去掉index.php

thinkphp站点下怎么隐藏前台和后台的入口文件index.php,admin.php