+
80
-

nginx如何支持eot woff字体的跨域?

请问 nginx如何支持eot woff字体的跨域请求?

网友回复

+
0
-

修改nginx配置文件,在server中增加

location ~ .*\.(eot|ttf|woff)$ {
  add_header Access-Control-Allow-Origin *;
}

我知道答案,我要回答