HTTP Status Code 3xx 都是做重新導向的作用:
- 301 Moved Permanently
- 302 Found
- 303 See Other
- 307 Temporary Redirect
- 308 Permanent Redirect
此篇主要是討論 307、308 為主,其他就簡單說明一下帶過~~
個人筆記, 記錄關於 系統、程式、新聞 與 日常生活 等資訊
HTTP Status Code 3xx 都是做重新導向的作用:
此篇主要是討論 307、308 為主,其他就簡單說明一下帶過~~
Nginx 要設定 301、302 轉址的範例如下:
以往 301 我都是設在 Apache 裡面,如下:
RewriteRule ^news$ http://example.com/news/ [R=301,NE,L]
想要在 PHP 送 301 / 302 Redirect 的 Header 要如何寫?
HTTP 定義 301 / 302 的 Header 意義: