我有网站,我有一个名为test.html页面的页面。当我浏览http://www.domainName.com/test时,它应该选择test.html页面,而不使用控制器和操作方法。
我在routeconfig.cs中写什么
while(Serial.available())
{
data[x] = Serial.read();
x++;
}
答案 0 :(得分:0)
你可以用两种方式实现它
在路线配置中:
routes.MapPageRoute("Yourhtmlroute","Yourcustomurl","Path/To/Your/test.html");
和
在您的控制器中:
return Redirect("YourCustomUrl");