我刚刚设置了Apache 2.4服务器并使用了http / 2。 我在服务器中配置了服务器推送:
Protocols h2 http/1.1
DocumentRoot /var/www/html/
<Location /index.html>
Header add Link "</img/2.jpg>; rel=preload"
</Location>
但服务器推了它但它仍然加载这个图像, enter image description here
希望有人可以帮助我:)。非常感谢
答案 0 :(得分:0)
我刚刚发现原因使它不起作用,当我们使用服务器推送像css,image,js ...
我们需要确定我们推送的文件。
Protocols h2 http/1.1
DocumentRoot /var/www/html/
<Location /index.html>
Header add Link "</img/2.jpg>; rel=preload; as=image"
</Location>