本文介绍了nginx中不能解析php程序的解决方法,在nginx配置文件中添加相关内容即可,源码安装了 mysql php nginx 但是发现nginx不支持php,可以参考本文提供的方法。
在服务器下源码安装了 mysql php nginx,结果nginx不支持php。
解决方法,在nginx配置文件中添加:
复制代码 代码示例:
location ~ .*.php?$
{
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fastcgi.conf;
}
此问题在以前的环境配置当中也遇到过,特此记录,以备后用。