我不确切知道怎么问,所以我会尝试用一个例子来解释.
我有这些资源example.com
,一个HTTP/2
启用的服务器:
//example.com/css/file.css //example.com/js/file.js //example.com/images/file.png
我想要的是通过cdn.example2.com
指向域的别名域加载其中一个文件example.com
.因此,HTML中的实际资源应如下所示:
//example.com/css/file.css //cdn.example2.com/js/file.js -> points to //example.com/js/file.js //example.com/images/file.png
我的问题是:第二个例子中的所有资源都应该由浏览器通过单个连接加载,因为当没有别名域时它们会被加载吗?
感谢帮助.