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]

后刷新页面就可以正常访问了

原创文章,作者:Maggie-Hunter,如若转载,请注明出处:https://blog.ytso.com/17591.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论