当前位置: 代码迷 >> 综合 >> nginx File not found (FastCGI sent in stderr: Primary script unknown)
  详细解决方案

nginx File not found (FastCGI sent in stderr: Primary script unknown)

热度:55   发布时间:2023-12-15 04:05:43.0
#    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;屏蔽这行,添加下面这行fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;$document_root 代表当前请求在root指令中指定的值。如:location / {root   /data;index  index.php index.html index.htm;fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
上面配置中的$document_root就是针对/data目录下的php文件进行解析。

 

  相关解决方案