我将如何从网站中的每个 .aspx 网页中删除 .aspx?以下工作,但仅适用于网站的根目录,并且定义长文件夹结构效率低下且混乱。
void RegisterRoutes(RouteCollection routes)
{
routes.MapPageRoute("RemASPx", "{file}", "~/{file}.aspx");
}
void Application_Start(object sender, EventArgs e)
{
// Code that runs on application startup
RegisterRoutes(RouteTable.Routes);
}
下面的作品没有斜杠,但是我将如何强制它有一个斜杠,因为没有什么可以跟随全能的 routeURL?
routes.MapPageRoute("RemASPx", "{*file}", "~/{file}.aspx");