我正在使用带有剃须刀页面的ASP.NET Core 3.0 ,我想路由sub1.test.local
到. 我尝试创建自定义页面约定,但这与 MVC 路由完全不同,所以我在这里问。Pages/Sub1
sub2.test.local
Pages/Sub2
问问题
3773 次
1 回答
2
迈克尔·格拉夫(Michael Graf)对此发表了文章。
您首先需要通过覆盖 MvcRouteHandler 创建自定义路由器,然后您需要在 Mvc 路由配置中使用此路由器类。
public class AreaRouter : MvcRouteHandler, IRouter
{
public new async Task RouteAsync(RouteContext context)
{
string url = context.HttpContext.Request.Headers["HOST"];
string firstDomain = url.Split('.')[0];
string subDomain = char.ToUpper(firstDomain[0]) + firstDomain.Substring(1);
string area = subDomain;
context.RouteData.Values.Add("area", subDomain);
await base.RouteAsync(context);
}
}
在启动配置中,
public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory)
{
app.UseMvc(routes =>
{
routes.DefaultHandler = new AreaRouter();
routes.MapRoute(name: "areaRoute",
template: "{controller=Home}/{action=Index}");
});
}
于 2018-12-16T14:55:34.963 回答