来自外部服务器的 CSS 文件。引用的图像是从哪里提取的?
这感觉是一个非常愚蠢的问题,对我来说应该是显而易见的。 ;)
如果我们有网站 www.example.com
但我们从 CDN 域 www.examplecdn.com
中提取 CSS 文件(如果我们在上述 css 中有此文件) file...
.sample {background url('/images/myimage.gif')}
...浏览器将从哪个服务器请求图像?各个浏览器之间的一致性吗?
This feels like a very dumb question that should be obvious to me. ;)
If we have our site www.example.com
but we're pulling our CSS files from a cdn domain www.examplecdn.com
if we have this in said css file...
.sample {background url('/images/myimage.gif')}
...which server will the browser request the images from? Is it consistent from browser to browser?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
URL与CSS的存储位置有关。因此,在这种情况下,远程服务器将是请求图像的服务器。
The URL is related to where the CSS is stored. So in this case the remote server would be the one asked for the image.