ASP.NET路由通过子域MVC或API(ASP.NET route to mvc or api b

2019-07-21 01:18发布

我们的应用有两个域(WWW | API).mydomain.com来

我如何请求路由到api.mydomain.com到API控制器和WWW到MVC控制器?

谢谢

Answer 1:

我使用约束解决我的问题。

这个网站给我的线索: http://stephenwalther.com/archive/2008/08/07/asp-net-mvc-tip-30-create-custom-route-constraints.aspx

这里是我的实现:

public class SubdomainRouteConstraint : IRouteConstraint
{
    private readonly string _subdomain;

    public SubdomainRouteConstraint(string subdomain)
    {
        _subdomain = subdomain;
    }

    public bool Match(HttpContextBase httpContext, Route route, string parameterName, RouteValueDictionary values, RouteDirection routeDirection)
    {
        return httpContext.Request.Url != null && httpContext.Request.Url.Host.StartsWith(_subdomain);
    }
}

而我的路线:

    public static void RegisterRoutes(RouteCollection routes)
        {
            routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

            routes.MapRoute(
                name: "Default",
                url: "{controller}/{action}/{id}",
                defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
#if !DEBUG
                ,constraints: new { subdomain = new SubdomainRouteConstraint("www") }
#endif
            );
        }


        public static void Register(HttpConfiguration config)
        {
            config.Routes.MapHttpRoute(
                name: "DefaultApi",
#if DEBUG
                routeTemplate: "api/{controller}/{id}",
#else
                routeTemplate: "{controller}/{id}",
#endif
                defaults: new {id = RouteParameter.Optional}
#if !DEBUG
                , constraints: new {subdomain = new SubdomainRouteConstraint("api")}
#endif
                );
}


Answer 2:

这里是一个博客帖子,旨在做你正在谈论什么。 从本质上讲,这个想法是在定义的路由定义子域名:

http://blog.maartenballiauw.be/post/2009/05/20/ASPNET-MVC-Domain-Routing.aspx

然而,最简单,最明显的方法是简单地创建两个不同的网站。 因为,一个是你的网站,一个是你的API是有意义的他们单独分成不同的项目。



文章来源: ASP.NET route to mvc or api by subdomain