1

私たちのアプリケーションには2つのドメインがあります(www | api).mydomain.com

リクエストをapi.mydomain.comからapiコントローラーにルーティングし、wwwからmvcコントローラーにルーティングするにはどうすればよいですか?

ありがとうございました

4

2 に答える 2

7

制約を使用して問題を解決しました。

このサイトは私に手がかりを与えました: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
                );
}
于 2013-03-05T21:50:01.880 に答える
1

これは、あなたが話していることを実行することを目的としたブログ投稿です。基本的に、アイデアは、定義するルートでサブドメインを定義することです。

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

ただし、最も簡単で明白なアプローチは、2つの異なるサイトを作成することです。1つはWebサイトであり、もう1つはAPIであるため、それらを異なるプロジェクトに分離することは理にかなっています。

于 2013-03-05T21:18:26.623 に答える