问题:加载一个页面所需的资源,需要多次请求。例如加载index需要请求三次:index.html、index.js、index.css。
解决思路:Server在接收到加载index请求时,同时返回index.html、index.js、index.css。
Client:
Link: </css/styles.css>; rel=preload; as=style, </js/scripts.js>; rel=preload; as=script, </img/logo.png>; rel=preload; as=image
Server
Apache: FilesMatch、H2PushResource
Nginx:不支持