thinkphp5.1隐藏index.php入口文件

Posted 2019ab

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了thinkphp5.1隐藏index.php入口文件相关的知识,希望对你有一定的参考价值。

thinkphp5.1隐藏index.php入口文件

修改public目录下的,.htaccess文件修改为

<IfModule mod_rewrite.c>
  Options +FollowSymlinks -Multiviews
  RewriteEngine On

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

官方提供的是

<IfModule mod_rewrite.c>
  Options +FollowSymlinks -Multiviews
  RewriteEngine On

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

会提示以下错误
在这里插入图片描述

正确做法,只需要在index.php后加?即可

以上是关于thinkphp5.1隐藏index.php入口文件的主要内容,如果未能解决你的问题,请参考以下文章

apache隐藏入口文件index.php

nginx隐藏入口文件index.php

thinkphp5.0如何隐藏index.php入口文件

Nginx配置 隐藏入口文件index.php

TP5配置隐藏入口index.php文件,Apache/phpstudy

关于nginx隐藏index.php入口文件注意事项