好吧,答案很明显。让我举例说明:
W3 Total Cache确保通过CDN URL加载网页上的所有主要静态内容(即网页源中直接引用的内容)。
因此,假设W3TC从cdn.example.com/wp-content/themes/MY-THEME/style.css
样式表包含以下代码:
.expand-down {
padding-left: 14px;
background: url(/wp-content/themes/v7/img/right_arrow.png) left center no-repeat;
}
#twitter_bird {
background: url(../themes/v7/img/tech-innovators/twitter_bird.png) no-repeat scroll left top transparent;
width: 34px;
float: left;
height: 24px;
margin: 9px 0 0 7px;
display: block;
}
,因为CSS文件具有对图像位置的相对引用。因此,浏览器只需从
same domain as the domain the one the stylesheet is served from. 我怎么会忘记这件简单的事?!