Your code is correct, and should be placed in the Application_Start
method in Global.asax
. For example:
void Application_Start(object sender, EventArgs e)
{
RouteTable.Routes.Add(new Route(
"sitemap.xml", new PageRouteHandler("~/sitemap.aspx")));
}
However, you also need to make sure that *.xml files are handled by ASP.NET. By default, *.xml files will just be served up by IIS and not processed by ASP.NET. To make sure they are processed by ASP.NET, you can either:
1) Specify runAllManagedModulesForAllRequests="true"
on the system.webServer
element in your web.config
:
<system.webServer>
<modules runAllManagedModulesForAllRequests="true">
</modules>
</system.webServer>
or 2) add a "Handler Mapping" for .xml files:
<system.webServer>
<handlers>
<add name="xml-file-handler" path="*.xml" type="System.Web.UI.PageHandlerFactory"
verb="*" />
</handlers>
</system.webServer>
I tested this in a sample ASP.NET (non-MVC) project and was able to get the routing to work as you specified.