1.检查路径设置
检查你的 Nginx 配置文件是否正确指定了 PHP 路径,确认文件路径是否正确。同时,确保你的 Web 服务器具有访问权限。
server {
listen 80;
server_name example.com;
root /usr/share/nginx/html;
index index.html index.htm index.php;
location / {
try_files $uri $uri/ /index.php$is_args$args;
}
location ~ \.php$ {
fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
上述代码中,关键部分是 fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
,它告诉 PHP-FPM 在哪里找到请求的 PHP 文件。
2. 没有项目访问权限
修改.user.ini文件,一般该文件所在地址:/home/wwwroot/default
修改该文件,需要先添加修改权限:
1.切换到.user.ini 的目录下
2.使用命令 chattr -i .user.ini 解除文件不可更动属性
3. 修改.user.ini文件,在后面加上自己的项目路径
4. chattr +i .user.ini 重新恢复文件不可更动属性
5. service php-fpm restart 重启php