这篇文章介绍的内容是关于nginx无法解析php脚本的问题,有着一定的参考价值,有需要的朋友可以参考一下
1、查看nginx.conf是否配置正确
正确格式:
location ~ .php$ {
root /usr/share/nginx/html; #可以放在全局里
fastcgi_pass 127.0.0.1:9000; #php-fpm默认端口不要改成80
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /usr/share/nginx/html/$fastcgi_script_name;
include fastcgi_params;
}
2、查看php-fpm是否启动 ps -aux |grep php
已启动:
相关推荐:
Atas ialah kandungan terperinci nginx无法解析php脚本. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!