No input file specified.”原因在于使用的PHP5.6是fast_cgi模式,而在某些情况下,不能正确识别path_info所造成的错误。默认的.htaccess里面的规则(如图): 在.htaccess文件中找到
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
替换:
RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]
京公网安备 11010502049817号