HTTP/2 Server Push

问题:加载一个页面所需的资源,需要多次请求。例如加载index需要请求三次:index.html、index.js、index.css。

解决思路:Server在接收到加载index请求时,同时返回index.html、index.js、index.css。

Client:

Link: ; rel=preload; as=style, ; rel=preload; as=script, ; rel=preload; as=image

Server
Apache: FilesMatch、H2PushResource
Nginx:不支持

你可能感兴趣的:(HTTP/2 Server Push)