资源解释为Font但使用MIME类型字体/ woff传输:| Django框架

时间:2013-08-16 10:31:59

标签: django mime

我知道在Apache One中添加了

RewriteEngine On
RewriteRule !(\.ico\.gif|\.png|\.jpe?g|\.css|\.js|\.php|\.eot|\.svg|\.ttf|\.woff|\.otf|^public/.*)$ index.php [nocase,last]

但我如何处理Django,这些规则

1 个答案:

答案 0 :(得分:4)

那么,您是在Django dev服务器中提供静态文件吗?

settings.py我觉得你需要:

if DEBUG:
    import mimetypes
    mimetypes.add_type("application/font-woff", ".woff", True)

...来自SO上的这些问题中的信息:

Resource interpreted as Font but transferred with MIME type application/x-font-woff
Django development server and MIME types