php+nginx 出现 "File Not Found"问题

拿到新服务器配置php+nginx环境的时候发现访问php文件的时候报了

"File Not Found"错误

这里有两种解决办法

先查看 php-fpm 的运行用户以及nginx的运行用户

sudo ps aux | grep nginx
sudo ps aux | grep php-fpm

nginx

B415EDA0-4704-40B4-BB03-DD5EB881A8F9.png

php-fpm

4E6656D2-9DE1-49EA-B97D-AA499CDE673A.png

最好让他们在同一个用户下这里我已经全部修改为nginx

如果不是同一个用户nginx修改配置:

sudo vim /etc/nginx/nginx.conf

下的user属性为nginx

user nginx
worker_processes  1;

一般来说在第一行

php-fpm修改

sudo vim /etc/php-fpm.d/www.conf

下修改user 以及 group 为 nginx

; Unix user/group of processes
; Note: The user is mandatory. If the group is not set, the default user's group
;       will be used.
; RPM: apache Choosed to be able to access some dir as httpd
user = nginx
; RPM: Keep a group allowed to write in log dir.
group = nginx

然后进入nginx网站根路径一般为/usr/share/nginx/html修改目录权限

sudo chorm -R nginx ./

重启nginx和php-fpm应该可以解决

2.第一种无法解决那么第二种

将nginx目录下的配置文件的

fastcgi_param SCRIPT_FILENAME scripts$fastcgi_script_name;

修改为

fastcgi_param SCRIPT_FILENAME 你的网站根路径$fastcgi_script_name;

这台服务器上就是

fastcgi_param SCRIPT_FILENAME /usr/share/nginx/html$fastcgi_script_name;

即可解决

你可能感兴趣的:(php+nginx 出现 "File Not Found"问题)