项目从7.0切换到7.2.9一访问本地就报404,然后重启 + 重新配置nginx.conf也无效
然后取查看phpstudy 的 nginx/logs/error.log
发现一访问本地网站就报下面错
phpstudy报错
2023/06/28 11:36:28 [error] 14128#19616: *1 upstream prematurely closed connection while reading response header from upstream, client: 127.0.0.1, server: 110.demo.com, request: "GET /admin.php/system/index/index.html HTTP/1.1", upstream: "fastcgi://127.0.0.1:9003", host: "110.demo.com"
翻译:从上游读取响应头时上游过早关闭的连接
因为之前跑过vue服务,很肯能是端口占用了
后面通过杀掉windows 9000端口进程就好了
1、打开windows CMD窗口
两步方法 :
1 查询端口占用 netstat -aon|findstr "9000"
2 强行杀死进程 taskkill /pid 11080 -t -f
然后重启phpstudy后成功结局