I have a custom route to simplify the url and only use the home controller implicitly, but by doing so I can no longer access my sitemap.xml form the default endpoint, how could I fix this?
'routes.MapRoute(
' name:="OmitController",
' url:="{action}/{id}",
' defaults:=New With {.controller = "Home", .action = "Index", .id = UrlParameter.Optional}
')