Http傳輸Header一覽

2021-07-24 23:11:14 字數 1874 閱讀 5808

response header:

date 伺服器端時間

server 伺服器端的伺服器軟體 apache/2.2.6

etag 檔案識別符號

content-encoding傳送啟用了gzip壓縮 gzip

content-length 內容長度

content-type 內容型別

請求header(http request header ):

host 請求的網域名稱

user-agent 瀏覽器端瀏覽器型號和版本

accept 可接受的內容型別

accept-language 語言

accept-encoding 可接受的壓縮型別 gzip,deflate

accept-charset 可接受的內容編碼 utf-8,*

注意: 所有的 header 值必須是string、bytestring 或者 unicode。儘管傳遞 unicode header 也是允許的,但不建議這樣做。

——————————————————————————更詳細的解釋——————————————————————————

requestsheader 解釋示例

responses header解釋示例

accept-ranges -- 表明伺服器是否支援指定範圍請求及哪種型別的分段請求accept-ranges: bytes

age -- 從原始伺服器到**快取形成的估算時間(以秒計,非負)age: 12

allow -- 對某網路資源的有效的請求行為,不允許則返回405allow: get, head

cache-control -- 告訴所有的快取機制是否可以快取及哪種型別cache-control: no-cache

content-encoding -- web伺服器支援的返回內容壓縮編碼型別。content-encoding: gzip

content-language -- 響應體的語言content-language: en,zh

content-length -- 響應體的長度content-length: 348

content-location -- 請求資源可替代的備用的另一位址content-location: /index.htm

content-md5 -- 返回資源的md5校驗值content-md5: q2hly2sgsw50zwdyaxr5iq==

content-range -- 在整個返回體中本部分的位元組位置content-range: bytes 21010-47021/47022

content-type -- 返回內容的mime型別content-type: text/html; charset=utf-8

date -- 原始伺服器訊息發出的時間date: tue, 15 nov 2010 08:12:31 gmt

etag -- 請求變數的實體標籤的當前值etag: 「737060cd8c284d8af7ad3082f209582d」

expires -- 響應過期的日期和時間expires: thu, 01 dec 2010 16:00:00 gmt

last-modified -- 請求資源的最後修改時間last-modified: tue, 15 nov 2010 12:45:26 gmt

location -- 用來重定向接收方到非請求url的位置來完成請求或標識新的資源location:

pragma -- 包括實現特定的指令,它可應用到響應鏈上的任何接收方pragma: no-cache

proxy-authenticate -- 它指出認證方案和可應用到**的該url上的引數proxy-authenticate: basicrefresh應用於重定向或乙個新的資源被創造,在5秒之後重定向(由網景提出,被大部分瀏覽器支援)

HTTP世界一覽

正式名稱是 internet,上網 實際上是訪問網際網路的子集全球資訊網,它基於 http 協議,傳輸 html 等超文字資源 還有許多全球資訊網之外的資源,例如 電子郵件,bt,ftp,ssh等,需要各自專有協議訪問 web browser,檢索檢視網際網路網頁資源的應用程式。在 http 協議中...

Http傳輸Header解釋

response header date 伺服器端時間 server 伺服器端的伺服器軟體 apache 2.2.6 etag 檔案識別符號 content encoding傳送啟用了gzip壓縮 gzip content length 內容長度 content type 內容型別 請求header...

http 返回code一覽

200 伺服器成功返回網頁 404 請求的網頁不存在 503 服務不可用 1xx 臨時響應 表示臨時響應並需要請求者繼續執行操作的狀態 說明 100 繼續 請求者應當繼續提出請求。伺服器返回此 表示已收到請求的第一部分,正在等待其餘部分。101 切換協議 請求者已要求伺服器切換協議,伺服器已確認並準...