Azure Web app 允许msg 下载
Azure Web app 允许 msg 下载
之前使用 iis, 允许文件下载只要增加 MIME Type
但是 web app的设置里面,没有此类选项,查找文档,走入歧途,方向走到了 new handler mapping 和 script processor…
后来自己实验,很简单,只要在 web.config 里面处理就行了
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<directoryBrowse enabled="true" />
<staticContent>
<mimeMap fileExtension=".msg" mimeType="application/octet-stream" />
</staticContent>
</system.webServer>
</configuration>