如何在mvc中进行路由,如何在mvc中隐藏页面扩展名?

时间:2016-12-06 10:03:19

标签: asp.net-mvc asp.net-mvc-4 url-routing global-asax

我有网站,我有一个名为test.html页面的页面。当我浏览http://www.domainName.com/test时,它应该选择test.html页面,而不使用控制器和操作方法。

我在routeconfig.cs中写什么

while(Serial.available())
{
 data[x] = Serial.read();
 x++;
}

1 个答案:

答案 0 :(得分:0)

你可以用两种方式实现它

在路线配置中:

routes.MapPageRoute("Yourhtmlroute","Yourcustomurl","Path/To/Your/test.html");

在您的控制器中:

return Redirect("YourCustomUrl");