url中去掉index.php,方便redirect()

Posted 小庄啊

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了url中去掉index.php,方便redirect()相关的知识,希望对你有一定的参考价值。

01 配置文件

return Array(
‘URL_MODEL‘ => ‘2‘,
);

 

02

index.php入口文件下面加入文件 .htaccess -->使用editplus-->另存为

<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>

 

03 修改 

nginx 下的配置文件 引入 mod_rewrite.so

以上是关于url中去掉index.php,方便redirect()的主要内容,如果未能解决你的问题,请参考以下文章

ThinkPHP 隐藏URL中的 index.php

TP中如何去掉index.php

nginx去掉url中的index.php

tp5.1 nginx环境下url去掉index.php

URL里为啥多一个index.php,服务器是Nginx0.8 ,这样的话标签就没有用了,怎么才能把index.php去掉,

ThinkPHP去掉URL中的index.php