centos7 安装nginx和php5.6.25遇到 无法访问php页面 报错file not found 问题解决
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos7 安装nginx和php5.6.25遇到 无法访问php页面 报错file not found 问题解决相关的知识,希望对你有一定的参考价值。
netstap -ntl|grep 9000
发下端口正常开启
iptables -L
返现9000端口已经开放
ps -aux|grep nginx
发下nginx进程正常运行
但是就是静态页面可以访问,php动态页面无法访问,报错‘file not found‘
最后发现问题,修改nginx.conf
fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
改成
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
一切OK了
以上是关于centos7 安装nginx和php5.6.25遇到 无法访问php页面 报错file not found 问题解决的主要内容,如果未能解决你的问题,请参考以下文章