thinkphp 项目报错No input file specified.

No input file specified.”原因在于使用的PHP5.6是fast_cgi模式,而在某些情况下,不能正确识别path_info所造成的错误。默认的.htaccess里面的规则(如图):
thinkphp 项目报错No input file specified._第1张图片
在.htaccess文件中找到

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

替换:

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

你可能感兴趣的:(php,php,apache,开发语言)