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.
すべての *.xml ファイル要求を asp.net エンジンに転送するように IIS 7.5 を構成して、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>