thinkphp5 伪静态后出现No input file specified.问题
Posted php-newbie
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了thinkphp5 伪静态后出现No input file specified.问题相关的知识,希望对你有一定的参考价值。
在入口文件同级的 .htaccess 文件中的
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
在默认情况下可能会导致访问页面报:No input file specified.
将上面一句修改为:
RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]
后刷新页面就可以正常访问了
以上是关于thinkphp5 伪静态后出现No input file specified.问题的主要内容,如果未能解决你的问题,请参考以下文章
thinkphp5安装php高版本出现No input file specified.解决
tp伪静态设置,报No input file specified错误