标签: nginx http-status-code-404
在代理服务器上,它将域名请求的https重定向到端口8811上的另一台nginx服务器。
在nginx服务器中已设置
error_page 404 = @notfound;
和:
location @notfound { return 301 /; }
但是,当浏览https://domain.sitename/strangefolder/时,它仍然会转到错误页面404(找不到nginx)。
这可能是什么原因?