Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Windows Azure 的门户中设置了一个网站,但它不会提供以 .json 结尾的文件,因为我猜该文件类型没有关联的处理程序。其他文本类型文件也会发生这种情况。
我只是想把它作为一个没有处理的文本文件提供服务,我需要在配置页面中输入什么处理程序映射?
我需要扩展(我假设 *.json)和脚本处理器路径。
实际上,您可以在没有任何管理门户 GUI 交互的情况下做到这一点。 您所要做的就是将以下内容添加到 web.config:
<system.webServer> <staticContent> <mimeMap fileExtension=".json" mimeType="text/plain" /> </staticContent> </system.webServer>
如果您已经拥有“system.webServer”部分,只需将其添加到此部分。