私は次のことをしようとしていました:
public class RouteConfig
{
public static void RegisterRoutes(RouteCollection routes){
{
//other stuff
routes.MapRoute(
name: "MyRoute",
url: "test.htm",
defaults: new { controller = "Controller", action = "Test" });
}
}
しかし、IIS は の静的ファイルを取得しようとするため、404 を返しますexample.com/test.htm
。
どうすれば目的の効果を得ることができますか?