解决Nginx的"File not Found"

2022/3/7 7:15:38

本文主要是介绍解决Nginx的"File not Found",对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!


server {
  server_name demo.com;
  listen 80;
  index index.php;
  root "D:\www\pros";
  location ~ ^(.*)\.php$ {
    # 也可使用unix地址
    fastcgi_pass localhost:9000;
    fastcgi_index index.php;
    # PHP-FPM读取的文件路径如果与Nginx一致可使用$document_root替换黄颜色部分
    # 通常情况下是不需要重新改写fastcgi_param系列配置选项的
    fastcgi_param SCRIPT_FILENAME /mnt/d/www/pros$fastcgi_script_name;
    include ../conf/fastcgi_params;
  }
}

  



这篇关于解决Nginx的"File not Found"的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程