|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
RedHatCentOS等等.学习linux不是逛自由市场,选定版本就要静下心来学习.不要今天换版本明天要升级.这样对你没有好处。
1、Nginx服务器办理办法
服务器利用的是Nginx,要在呼应的头部增加Access-Control-Allow-Origin字段,增加办法是用add_header指令:
设置例子:
代码以下:
location/assets/{
gzip_staticon;
expiresmax;
add_headerCache-Controlpublic;
add_headerAccess-Control-Allow-Origin*;
}
2、Apache服务器办理办法
FontAwesome(firefox没法显现火狐没法显现)Crossdomain(跨域成绩)
Theproblem
Itseemsthat,forsecurityreasons,Firefoxsimplydontallowyoutousebydefaultafontthatisnothostedonyourdomain,notevenonyoursubdomain.TheCDNbasedwebsitescanbealsoaffectedinthiscase.
Thesolution
Aftersomeinvestigations,Ifoundouttheworkaround:setaAccess-Control-Allow-Originheadertothefont.
代码以下:
<FilesMatch".(ttf|otf|eot|woff)$">
<IfModulemod_headers.c>
HeadersetAccess-Control-Allow-Origin"*"
</IfModule>
</FilesMatch>
Also,ifyouareusingnginxasyourwebserveryouwillneedtoincludethecodebelowinyourvirtualhostfile:
代码以下:
location~*.(eot|otf|ttf|woff)${
add_headerAccess-Control-Allow-Origin*;
}
在这里你会学到更多的知识,学习linux,更要学习一种geek的精神,python之禅中也说过:以总结分享为荣,以跪求其解为耻; |
|