上週末兄弟專案準備擴充套件伺服器以便提供更好的服務,兄弟專案有一些功能是實時提供到我這邊的,需要我這邊暫時把對應系統功能遮蔽,因為使用nginx,所以可以直接配置nginx重定向到固定系統維護頁面。
nginx重定向其實很簡單,用return 或rewrite關鍵字均可,因為重定向後直接跳轉到靜態頁面,不需要後續操作和記錄,所以直接301永久重定向。
其中重定向既可以在server中配置,也可以在具體的location 中配置,下面分別簡單介紹。
在server中配置:
http { server{ listen 80; server_name A.com; # 以下return 或 rewrite 選擇其中一個就行。其中upgrade.html 是自己寫的提示頁面 return 301 http://B.com/upgrade.html; # rewrite ^/(.*)$ http://B.com/upgrade.html permanent;
location / {
# 此處省略後面配置內容
}
}
}
或者在location中配置:
http { server{ listen 80; server_name A.com;
location / { rewrite ^/(.*)$ http://B.com/upgrade.html permanent;
# 此處省略後面配置內容
}
}
}
從以上例項看出,return 用301引數重定向,rewrite用 permanent(當然還可以用break,last,區別的話自己查資料)。
不知道你們有沒有發現,以上兩個例子中,都是用 A.com 去重定向到 B.com ,我試過,用A.com直接重定向到A.com/upgrade.html,會報錯重複次數太多,也就是進入死迴圈。在同時管理多個域名是可以配置用A重定向B,但是如果只有一個域名A那怎麼弄呢?
這時候就用到if條件判斷了,此處我們以在server中配置為例說明:
http { server{ listen 80; server_name A.com; # 注意 if 後面必須有一個空格!!! if ($request_uri !~ "/upgrade.html$") { return 301 http://A.com/upgrade.html; } location / { # 此處省略後面配置內容 } } }
以上例項說明,當訪問路徑不包含 /upgrade.html 時就重定向到 upgrade.html,此時能夠重定向,不會再有重複次數太多的提示,但有另一個問題,就是upgrade.html中的圖片無法顯示了,暫時沒時間去研究如何避免圖片被重定向了,後面有時間再補充。
測試if條件的時候,遇到一個特別坑的事,就是新增if後重啟nginx報錯:
Job for nginx.service failed because the control process exited with error code. See "systemctl status nginx.service" and "journalctl -xe" for details.
輸入 systemctl status nginx.service 可檢視錯誤資訊,其中 nginx: [emerg] unknown directive "if($request_uri" 錯誤查詢到答案,原來是if後面必須要有一個空格!!!!,太坑了,網上那些介紹nginx if的文章都沒有提到這麼重要的資訊。。。
感謝資料:
if後必須有空格:https://blog.csdn.net/palet/article/details/103394236
nginx中return和rewrite:https://blog.csdn.net/u010982507/article/details/104025717