TP5 切换到PHP5.5以上版本出现”No input file specified“

修改.htaccess文件中的

RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
修改为

RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]

默认读写的方式会导致No input file specified.

猜你喜欢

转载自blog.csdn.net/weixin_40854327/article/details/106095776