當 nginx 首頁不存在時,預設返回 404 而不是 403。
域名被某站劫持了導致整站被 B,通過 nginx 設置將指定域名綁定到指定的站點,然後強制返回 404。
location = / { return 404; }
但是首頁還是返回 403 代碼,而不是預期的 404。於是讓 404 正常,再直接將首頁 301 到一個不存在的資源。完工
location = / { index index.html return 404; }
location = /index.html { return 301 /noexsit; }