[PHP] 安装PHP报错“Primary script unknown”的解决方法
程序员文章站
2023-11-21 22:53:04
当安装完最新版的nginx和最新版的PHP以后,使用niginx默认配置文件中的PHP配置会有错误访问指定目录下的php文件时,显示File not found.错误。查看nginx的错误日志显示 90#90: *1 FastCGI sent in stderr: "Primary script u ......
当安装完最新版的nginx和最新版的php以后,使用niginx默认配置文件中的php配置会有错误
访问指定目录下的php文件时,显示file not found.错误。查看nginx的错误日志显示
90#90: *1 fastcgi sent in stderr: "primary script unknown" while reading response header from upstream, client: 127.0.0.1, server: 127.0.0.1, request: "get /index.php http/1.1", upstream: "fastcgi://127.0.0.1:9000", host: "127.0.0.1"
排查的过程:
1.修改默认php配置中的fastcgi_param配置fastcgi_param配置,这个地方默认的是/scripts$fastcgi_script_name
fastcgi_param script_filename $document_root$fastcgi_script_name;
2.把root指令从location /{}块里面拿到外面,因为看fpm的access日志,访问php文件报的404错误
最简配置如下:
server { listen 80; server_name 127.0.0.1; access_log /var/log/nginx/default.access.log main; error_log /var/log/nginx/default.error.log; root /var/www/html; location / { index index.html index.htm; } location ~ \.php$ { fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param script_filename $document_root$fastcgi_script_name; include fastcgi_params; } }
上一篇: 龙芯(mips64)电脑安装NodeJS
下一篇: Oralce 触发器
推荐阅读
-
[PHP] 安装PHP报错“Primary script unknown”的解决方法
-
php 启动时报错的简单解决方法
-
编译PHP报错configure error Cannot find libmysqlclient under usr的解决方法
-
PHP执行Curl时报错提示CURL ERROR: Recv failure: Connection reset by peer的解决方法
-
PHP 正则匹配h1的数据报错 preg_match(): Unknown modifier 'h' in
-
为PHP安装imagick时出现Cannot locate header file MagickWand.h错误的解决方法
-
Windows下PHP安装路径配置错误导致Apache无法启动的解决方法
-
ECSHOP在PHP5.5及高版本上报错的解决方法
-
安装PHP可能遇到的问题“无法载入mysql扩展” 的解决方法
-
php中使用addslashes函数报错问题的解决方法