目录搜索
GuidesAccess control CORSAuthenticationBrowser detection using the user agentCachingCaching FAQCompressionConditional requestsConnection management in HTTP 1.xContent negotiationContent negotiation: List of default Accept valuesCookiesCSPMessagesOverviewProtocol upgrade mechanismProxy servers and tunnelingProxy servers and tunneling: Proxy Auto-Configuration (PAC) filePublic Key PinningRange requestsRedirectionsResources and specificationsResources and URIsResponse codesServer-Side Access ControlSessionGuides: BasicsBasics of HTTPChoosing between www and non-www URLsData URIsEvolution of HTTPIdentifying resources on the WebMIME TypesMIME types: Complete list of MIME typesCSPContent-Security-PolicyContent-Security-Policy-Report-OnlyCSP: base-uriCSP: block-all-mixed-contentCSP: child-srcCSP: connect-srcCSP: default-srcCSP: font-srcCSP: form-actionCSP: frame-ancestorsCSP: frame-srcCSP: img-srcCSP: manifest-srcCSP: media-srcCSP: object-srcCSP: plugin-typesCSP: referrerCSP: report-uriCSP: require-sri-forCSP: sandboxCSP: script-srcCSP: style-srcCSP: upgrade-insecure-requestsCSP: worker-srcHeadersAcceptAccept-CharsetAccept-EncodingAccept-LanguageAccept-RangesAccess-Control-Allow-CredentialsAccess-Control-Allow-HeadersAccess-Control-Allow-MethodsAccess-Control-Allow-OriginAccess-Control-Expose-HeadersAccess-Control-Max-AgeAccess-Control-Request-HeadersAccess-Control-Request-MethodAgeAllowAuthorizationCache-ControlConnectionContent-DispositionContent-EncodingContent-LanguageContent-LengthContent-LocationContent-RangeContent-TypeCookieCookie2DateDNTETagExpectExpiresForwardedFromHeadersHostIf-MatchIf-Modified-SinceIf-None-MatchIf-RangeIf-Unmodified-SinceKeep-AliveLarge-AllocationLast-ModifiedLocationOriginPragmaProxy-AuthenticateProxy-AuthorizationPublic-Key-PinsPublic-Key-Pins-Report-OnlyRangeRefererReferrer-PolicyRetry-AfterServerSet-CookieSet-Cookie2SourceMapStrict-Transport-SecurityTETkTrailerTransfer-EncodingUpgrade-Insecure-RequestsUser-AgentUser-Agent: FirefoxVaryViaWarningWWW-AuthenticateX-Content-Type-OptionsX-DNS-Prefetch-ControlX-Forwarded-ForX-Forwarded-HostX-Forwarded-ProtoX-Frame-OptionsX-XSS-ProtectionMethodsCONNECTDELETEGETHEADMethodsOPTIONSPATCHPOSTPUTStatus100 Continue101 Switching Protocols200 OK201 Created202 Accepted203 Non-Authoritative Information204 No Content205 Reset Content206 Partial Content300 Multiple Choices301 Moved Permanently302 Found303 See Other304 Not Modified307 Temporary Redirect308 Permanent Redirect400 Bad Request401 Unauthorized403 Forbidden404 Not Found405 Method Not Allowed406 Not Acceptable407 Proxy Authentication Required408 Request Timeout409 Conflict410 Gone411 Length Required412 Precondition Failed413 Payload Too Large414 URI Too Long415 Unsupported Media Type416 Range Not Satisfiable417 Expectation Failed426 Upgrade Required428 Precondition Required429 Too Many Requests431 Request Header Fields Too Large451 Unavailable For Legal Reasons500 Internal Server Error501 Not Implemented502 Bad Gateway503 Service Unavailable504 Gateway Timeout505 HTTP Version Not Supported511 Network Authentication RequiredStatus
文字

X-DNS-Prefetch-ControlHTTP 响应头控制 DNS 预取功能通过对用户可以选择跟随,以及通过在文档,包括图片,CSS,JavaScript 和等参考项的 URL 都链接浏览器主动进行域名解析。

该预取在后台执行,以便在需要引用项目时 DNS 可能已经解决。这可以减少用户点击链接时的等待时间。

Header type

Response header

Forbidden header name

no

句法

X-DNS-Prefetch-Control: on
X-DNS-Prefetch-Control: off

指令

onEnables DNS 预取。这是浏览器所做的,如果它们支持该功能的话,那么这个标题不是 presentoffDisables 的 DNS 预取。如果您不控制页面上的链接,或者不知道您不希望将信息泄漏到这些域,这很有用。

描述

DNS 请求在带宽方面非常小,但延迟非常高,特别是在移动网络上。通过推测性地预取 DNS 结果,可以在某些时候显着降低延迟,例如当用户点击链接时。在某些情况下,延迟可能会缩短一秒。

在一些浏览器中实现这种预取允许域名解析与实际页面内容的获取并行(而不是与其串行)发生。通过这样做,高延迟域名解析过程在获取内容时不会造成任何延迟。

页面加载时间 - 尤其是在移动网络上 - 可以通过这种方式进行可测量的改进。如果可以在请求的图像之前解析图像的域名,那么载入很多图像的页面在加载图像时可以看到 5% 或更多的改进。

在浏览器中配置预取

一般来说,您不需要执行任何操作来管理预取。但是,用户可能希望禁用预取。在 Firefox 上,这可以通过设置network.dns.disablePrefetch首选项来完成true

另外,默认情况下,不会对通过 HTTPS 加载的文档执行预取嵌入式链接主机名。在 Firefox 上,可以通过设置network.dns.disablePrefetchFromHTTPS首选项来更改false

例子

打开和关闭预取

您可以X-DNS-Prefetch-Control使用元素http-equiv上的属性来发送头部服务器端或单个文档<meta>,如下所示:

<meta http-equiv="x-dns-prefetch-control" content="off">

您可以通过设置content为“ on” 来反转此设置。

强制查找特定主机名

您可以强制特定的主机名的查找,而不提供使用主机名通过使用特定的锚rel上的属性<link>与元素链接类型的dns-prefetch

<link rel="dns-prefetch" href="http://www.spreadfirefox.com/">

在这个例子中,域名 “ www.spreadfirefox.com ” 将被预先解决。

同样,链接元素可用于解析主机名而不提供完整的 URL,但只能通过在主机名前面加两个斜线来解析:

<link rel="dns-prefetch" href="//www.spreadfirefox.com">

强制预取主机名可能很有用,例如,在网站的主页上强制预先解析在整个网站中经常被引用的域名,即使它们没有在主页上使用。即使主页的性能可能不会受到影响,这也会改善网站的整体性能。

上一篇:下一篇: