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]

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

posted @ 2017-12-04 17:36  php-newbie-xh  阅读(2057)  评论(0编辑  收藏  举报