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)?
我需要 ASP.NET 来处理对 opensearch.xml 的请求。
解决方案是创建一个处理程序来将所需的路径映射到 MvcHttpHandler:
<handlers> <add name="OpenSearchHandler" path="opensearch.xml" verb="GET" type="System.Web.Mvc.MvcHttpHandler"/> </handlers>