ngxin;php-fpm安装后,html静态页面没问题,但是phpinfo页面虽然返回200,但总是空白页
也没有任何报错,考虑应该是nginx已经将php页面转移给php处理了,所以问题应该在php的配置上,经过查找,发现需要在nginx中加入一句话
1 | fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; |
在nginx.conf中的
1 | location ~ \.php$ { |
或者在fastcgi_params配置文件中加入
1 | # PHP only, required if PHP was built with --enable-force-cgi-redirect |
然后重启nginx就可以显示出页面了。
参考文章: