Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 547 Bytes

iconfont.md

File metadata and controls

30 lines (23 loc) · 547 Bytes

iconfont字体跨域配置

server {
    root xxx;

    # 使用location来匹配以字体文件
    location ~* \.(eot|otf|ttf|woff|svg)$ {
        add_header Access-Control-Allow-Origin *;
    }
}

但如果你的location已经配置了, 可以使用if判断添加, 如:

server {
    location / {
        # 使用判断请求文件来添加
        if ($document_uri ~ \.(eot|otf|ttf|woff|svg)$) {
            add_header Access-Control-Allow-Origin *;
        }
    }
}

link