96net

在阿里云装nginx+php+mysql nginx运行出现 file not found 错误处理原因

1,第一情况

location ~ \.php$ {
# root html;
fastcgi_pass 127.0.0.1:9000;
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;这里改为 $document_root

2,第二情况

server {
listen 80;
server_name v1.ywwfx.com;
root /home/www/www.96net.com.cn;

}

root /home/www/www.96net.com.cn;目录权限不够导致的

3,第三种情况

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

user=nginx

group=nginx

这些都设置后  重启nginx  php-fpm 就可以运行了

分类:

技术点:

相关文章:

  • 2021-05-13
  • 2021-06-26
  • 2021-04-19
  • 2021-09-03
  • 2021-11-21
  • 2021-11-09
  • 2021-03-26
  • 2021-07-03
猜你喜欢
  • 2021-11-06
  • 2021-10-06
  • 2021-12-02
  • 2021-05-26
  • 2021-04-29
  • 2021-10-17
  • 2021-08-11
  • 2021-07-30
相关资源
相似解决方案