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.
特定のファイル名と拡張子をIISExpressのASP.NETに(web.configを介して)マップすることは可能ですか?
opensearch.xmlへのリクエストを処理するにはASP.NETが必要です。
解決策は、必要なパスをMvcHttpHandlerにマップするハンドラーを作成することでした。
<handlers> <add name="OpenSearchHandler" path="opensearch.xml" verb="GET" type="System.Web.Mvc.MvcHttpHandler"/> </handlers>