美文网首页
css加载字体跨域问题

css加载字体跨域问题

作者: wuxuan94 | 来源:发表于2017-11-10 18:10 被阅读0次
    No 'Access-Control-Allow-Origin' header is present on the requested resource.
    

    当请求不同域名的静态文件时会出现上面跨域问题
    解决方法:
    1.开启apache的mod_headers模块

    LoadModule headers_module modules/mod_headers.so
    

    2.设置跨域访问权限

    <FilesMatch "\.(ttf|otf|eot|woff|svg|woff2)$">
    <IfModule mod_headers.c>
    Header set Access-Control-Allow-Origin "*"
    </IfModule>
    </FilesMatch>
    

    相关文章

      网友评论

          本文标题:css加载字体跨域问题

          本文链接:https://www.haomeiwen.com/subject/tqqimxtx.html