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.