--- title: 101 Switching Protocols slug: Web/HTTP/Status/101 translation_of: Web/HTTP/Status/101 ---
{{HTTPSidebar}}

HTTP 101 Switching Protocols 回應碼表示伺服器正在切換到用戶端在請求標頭{{HTTPHeader("Upgrade")}} 中所要求的通訊協定。

伺服端將在回應中包含 {{HTTPHeader("Upgrade")}} 標頭以表明其所切換的通訊協定。此過程在文章 Protocol upgrade mechanism 中有更加詳細的描述。

狀態

101 Switching Protocols

範例

通訊協定切換可能會用於 WebSockets 中。

HTTP/1.1 101 Switching Protocols
Upgrade: websocket
Connection: Upgrade

規範

Specification Title
{{RFC("7231", "101 Switching Protocol" , "6.2.2")}} Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content

參見