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.
如何配置 IIS 7.5 将所有 *.xml 文件请求转发到 asp.net 引擎,以便我可以在 Global.asax 中处理它们并重写 *.aspx 文件的路径?现在 IIS 期望直接在磁盘上找到它们。我将使用它来动态生成我的 sitemap.xml
您可以通过编辑 web.config 来强制静态文件通过 ASP.NET 管道:
<system.webServer> <handlers> <add name="XMLHandler" type="System.Web.StaticFileHandler" path="*.xml" verb="GET" /> </handlers> </system.webServer>