有谁知道是否可以将 SVG mime 类型添加到 Windows Azure 网站?我尝试使用 web.config 文件,但这只会破坏我的网站。
这是当前预览的限制还是我遗漏了什么?
感谢您的帮助!
有谁知道是否可以将 SVG mime 类型添加到 Windows Azure 网站?我尝试使用 web.config 文件,但这只会破坏我的网站。
这是当前预览的限制还是我遗漏了什么?
感谢您的帮助!
您可以在 Windows Azure 网站(在 web.config 级别)中执行的操作非常有限,但应该允许您在staticContent下添加 mime 类型:
<configuration>
<system.webServer>
<staticContent>
<remove fileExtension=".svg"/>
<mimeMap fileExtension=".svg" mimeType="image/svg+xml" />
</staticContent>
</system.webServer>
</configuration>
像我这样的其他人可能已经到达这里,但由于其他相关文件类型而没有解决相同的问题,在我的情况下,我还需要.eot
和.woff
mime 映射。
<system.webServer>
<staticContent>
<remove fileExtension=".svg" />
<remove fileExtension=".eot" />
<remove fileExtension=".woff" />
<mimeMap fileExtension=".svg" mimeType="image/svg+xml" />
<mimeMap fileExtension=".eot" mimeType="application/vnd.ms-fontobject" />
<mimeMap fileExtension=".woff" mimeType="application/x-woff" />
</staticContent>
</system.webServer>