本文没有配图

解决WordPress No ‘Access-Control-Allow-Origin’ header is present错误

如果你给你的WordPress网站添加了CDN,而且CDN和网站主域名不是同一个网址,那么很有可能查看源代码的时候会出现no ‘access-control-allow-origin’ header is present on the requested resource错误,这个问题是因为字体跨域权限导致的,如果你使用的apache,那么只需要在主机的伪静态文件里面添加上下面这串代码就可以了。

# Set CORS
<FilesMatch "\.(ttf|ttc|otf|eot|woff|woff2|font.css)$">
<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin "*"
</IfModule>
</FilesMatch>
# Set CORS

5/5 - (2 votes)
滚动至顶部