要在区域中使用路由,除了进行其他子域路由之外,还需要将DataTokens["area"] 参数设置为正确的区域。这是一个例子:
子域路由
public class SubdomainRoute : Route
{
// Passing a null subdomain means the route will match any subdomain
public SubdomainRoute(string subdomain, string url, IRouteHandler routeHandler)
: base(url, routeHandler)
{
this.Subdomain = subdomain;
}
public string Subdomain { get; private set; }
public override RouteData GetRouteData(HttpContextBase httpContext)
{
// A subdomain specified as a query parameter takes precedence over the hostname.
string subdomain = httpContext.Request.Params["subdomain"];
if (subdomain == null)
{
string host = httpContext.Request.Headers["Host"];
int index = host.IndexOf('.');
if (index >= 0)
subdomain = host.Substring(0, index);
}
// Check if the subdomain matches this route
if (this.Subdomain != null && !this.Subdomain.Equals(subdomain, StringComparison.OrdinalIgnoreCase))
return null;
var routeData = base.GetRouteData(httpContext);
if (routeData == null) return null; // The route doesn't match - exit early
// Store the subdomain as a datatoken in case it is needed elsewhere in the app
routeData.DataTokens["subdomain"] = subdomain;
return routeData;
}
public override VirtualPathData GetVirtualPath(RequestContext requestContext, RouteValueDictionary values)
{
// Read the current query string and cascade it to the current URL only if it exists
object subdomainParam = requestContext.HttpContext.Request.Params["subdomain"];
if (subdomainParam != null)
values["subdomain"] = subdomainParam;
return base.GetVirtualPath(requestContext, values);
}
}
RouteCollectionExtensions
这些扩展方法允许您在应用程序的非区域部分注册路由以使用子域。
public static class RouteCollectionExtensions
{
public static SubdomainRoute MapSubdomainRoute(
this RouteCollection routes,
string subdomain,
string url,
object defaults = null,
object constraints = null,
string[] namespaces = null)
{
return MapSubdomainRoute(routes, null, subdomain, url, defaults, constraints, namespaces);
}
public static SubdomainRoute MapSubdomainRoute(
this RouteCollection routes,
string name,
string subdomain,
string url,
object defaults = null,
object constraints = null,
string[] namespaces = null)
{
var route = new SubdomainRoute(subdomain, url, new MvcRouteHandler())
{
Defaults = new RouteValueDictionary(defaults),
Constraints = new RouteValueDictionary(constraints),
DataTokens = new RouteValueDictionary()
};
if ((namespaces != null) && (namespaces.Length > 0))
{
route.DataTokens["Namespaces"] = namespaces;
}
routes.Add(name, route);
return route;
}
}
AreaRegistrationContextExtensions
这些扩展方法允许您注册区域路由以使用子域。
public static class AreaRegistrationContextExtensions
{
public static SubdomainRoute MapSubdomainRoute(
this AreaRegistrationContext context,
string url,
object defaults = null,
object constraints = null,
string[] namespaces = null)
{
return MapSubdomainRoute(context, null, url, defaults, constraints, namespaces);
}
public static SubdomainRoute MapSubdomainRoute(
this AreaRegistrationContext context,
string name,
string url,
object defaults = null,
object constraints = null,
string[] namespaces = null)
{
if ((namespaces == null) && (context.Namespaces != null))
{
namespaces = context.Namespaces.ToArray<string>();
}
var route = context.Routes.MapSubdomainRoute(name,
context.AreaName, url, defaults, constraints, namespaces);
bool flag = (namespaces == null) || (namespaces.Length == 0);
route.DataTokens["UseNamespaceFallback"] = flag;
route.DataTokens["area"] = context.AreaName;
return route;
}
}
用法
要让 URL 模式 {subdomain}.domain.com/{action}/{id} 使用特定的特定区域,您只需将其注册为 AreaRegistration 的一部分。
public class AppleAreaRegistration : AreaRegistration
{
public override string AreaName
{
get
{
return "Apple";
}
}
public override void RegisterArea(AreaRegistrationContext context)
{
context.MapSubdomainRoute(
url: "{action}/{id}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional });
}
}
注意:您的示例 URL 有一个限制,即每个区域只能使用一个控制器。 controller 是必需的路由值,因此您需要在 URL ({controller}/{action}/{id}) 中提供它,或者将其默认为上述示例 - 后一种情况意味着您只能拥有 1 个控制器。
当然,您还需要设置 DNS 服务器以使用子域。