nginx 反向代理 php-fpm 出现 404 file not found
解决:
nginx 更改配置
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
为
fastcgi_param SCRIPT_FILENAME /var/www/html/$fastcgi_script_name;
原因
nginx 的 root 为 /laojia/php-fpm;
php 解析的根目录为 /var/www/html
两个目录不一致,$document_root 改成 php 的根路径即可
0顶
0 踩
共 0 条评论