原来使用百度CDN上的bootstrap 3.0.3,升级到3.3.4后即出现如下错误:

Font from origin 'http://apps.bdimg.com' has been blocked from loading by Cross-Origin Resource Sharing policy: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://127.0.0.1:8080' is therefore not allowed access.

在网上找了很多,都说要配置:

<IfModule headers_module>

Header set Access-Control-Allow-Origin "*"

</IfModule>

但是在服务器上配置了也没有效果。后来才想起来,这个配到自己的服务器上是没用的,得在CDN服务器上配置,但是这个CDN不是我们的,没法配置。

换了个CDN:

问题解决。