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のポータルにWebサイトを設定していますが、ファイルタイプに関連付けられたハンドラーがないと思われるため、.jsonで終わるファイルは提供されません。これは、他のテキストタイプのファイルでも発生します。
処理せずにテキストファイルとしてサーバー化したいだけですが、構成ページに入力する必要のあるハンドラーマッピングは何ですか?
拡張機能(* .jsonと思われます)とスクリプトプロセッサパスが必要です。
実際には、管理ポータルのGUIを操作しなくてもそれを実行できます。 あなたがしなければならないのは、web.configに以下を追加することです:
<system.webServer> <staticContent> <mimeMap fileExtension=".json" mimeType="text/plain" /> </staticContent> </system.webServer>
「system.webServer」セクションがすでにある場合は、このセクションに追加してください。