CentOS Nginx+PHP-fpm下浏览器打开任何php页面都是file not found

发布网友 发布时间:2022-04-06 07:50

我来回答

5个回答

热心网友 时间:2022-04-06 09:19

把你那个 $document_root 换成直接的 /var/www 试试呢
类似下面的

location ~\.php$ {
include /etc/nginx/fastcgi_params;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /www/littlepig.cn/htdocs$fastcgi_script_name;
}

热心网友 时间:2022-04-06 10:37

location ~ \.php$ {
root html;
将root html;去掉
这段是重置该访问的文件根目录
你在server中已经定义了
root /var/www

root html;是Nginx安装目录下的html目录

是否是其他问题先改了这个才知道

热心网友 时间:2022-04-06 12:12

ps aux| grep nginx
ps aux| grep fpm

先排除 用户名 是否一致的问题,
别一个 是 www ,一个是 nobody
祝你好运!!!

热心网友 时间:2022-04-06 14:03

删掉
root html;

这行再试

热心网友 时间:2022-04-06 16:11

去掉注释
;listen.owner = www
;listen.group = www

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com