如何在 Rails 中实现跨浏览器 @font-face 支持
我正在开发一个小型 Rails 应用程序,向其他网站提供字体服务,
请求 http://url/fonts/fontname将根据浏览器类型返回 woff、eot 或 ttf 字体。
这个应用程序在我的本地主机中运行良好,但在其他 ip 中运行不正常...我知道问题与跨源资源共享限制有关,但不知道如何解决这个问题...
我正在使用 Mongrel .. 。
I am developing a small rails app to serve fonts to other sites
say a request http://url/fonts/fontname will return woff,eot or ttf font based on the browser type.
This app is working fine in my localhost but not in other ip... I know the problem is something to do with Cross-Origin Resource Sharing restriction but don't know how to solve this....
I am using Mongrel...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您说过您可以访问其他网站的文件。
那么您只需将
Header set Access-Control-Allow-Origin *
添加到目标网站上的 .htaccess 文件即可。来源
You said you have access to the other sites' files.
Well then you just need to add
Header set Access-Control-Allow-Origin *
to your .htaccess file on the targeted websites.source