--- title: WWW-Authenticate slug: Web/HTTP/Headers/WWW-Authenticate tags: - HTTP - HTTP Header - Reference - Response Header - header translation_of: Web/HTTP/Headers/WWW-Authenticate ---
HTTP WWW-Authenticate
响应头定义了使用何种验证方式去获取对资源的连接。
WWW-Authenticate
header通常会和一个 {{HTTPStatus("401")}} Unauthorized
的响应一同被发送。
Header type | {{Glossary("Response header")}} |
---|---|
{{Glossary("Forbidden header name")}} | no |
WWW-Authenticate: <type> realm=<realm>
通常的, 一个服务器响应包含一个像如下WWW-Authenticate
的头信息:
WWW-Authenticate: Basic WWW-Authenticate: Basic realm="Access to the staging site"
作为一个例子,可以查看 HTTP authentication 页面,了解如何配置Apache和nginx服务器来使用HTTP basic authentication密码保护你的站点。
Specification | Title |
---|---|
{{RFC("7235", "WWW-Authenticate", "4.1")}} | HTTP/1.1: Authentication |
{{RFC("7617")}} | The 'Basic' HTTP Authentication Scheme |