thinkphp 项目报错No input file specified.

1提示:“No input file specified.”原因在于使用的PHP5.6是fast_cgi模式,而在某些情况下,不能正确识别path_info所造成的错误。默认的.htaccess里面的规则(如图):

thinkphp 项目报错No input file specified._第1张图片

“No input file specified.”,是没有得到有效的文件路径造成的。修改后的伪静态规则,如下:

thinkphp 项目报错No input file specified._第2张图片

仅仅就是在正则结果“/$1”前面多加了一个“?”号,问题也就随之解决了。

END

2.打开根,检查每一个文件,发现如下文件后,将文件中的内容全部注释掉,访问正常!

thinkphp 项目报错No input file specified._第3张图片

注意事项

用通常的过程启动 Apache(必须完全停止 Apache 再重新启动,而不是用 HUP 或者USR1 信号使 Apache 重新加载)。

你可能感兴趣的:(php)