Last active
January 19, 2018 02:18
-
-
Save RyannosaurusRex/4145948 to your computer and use it in GitHub Desktop.
ASP.NET MVC Subdomain Routing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class RouteConfig | |
{ | |
public static void RegisterRoutes(RouteCollection routes) | |
{ | |
routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); | |
routes.MapRoute( | |
"Sub", // Route name | |
"{controller}/{action}/{id}", // URL with parameters | |
new { controller = "SubdomainController", action = "AnyActionYouLike", id = UrlParameter.Optional }, | |
new { controller = new SubdomainRouteConstraint() }, | |
new[] { "MyProjectNameSpace.Controllers" } | |
); | |
routes.MapRoute( | |
name: "Default", | |
url: "{controller}/{action}/{id}", | |
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional } | |
); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class SubdomainRouteConstraint : IRouteConstraint | |
{ | |
public bool Match(HttpContextBase httpContext, Route route, string parameterName, RouteValueDictionary values, | |
RouteDirection routeDirection) | |
{ | |
string url = httpContext.Request.Headers["HOST"]; | |
int index = url.IndexOf(".", System.StringComparison.Ordinal); | |
if (index < 0) | |
{ | |
return false; | |
} | |
string sub = url.Split('.')[0]; | |
if (sub == "www" || sub == "yourdomainname" || sub == "mail" /* || sub = "some-blacklist-subdomain" */) | |
{ | |
return false; | |
} | |
//Add a custom parameter named "user". Anythink you like :) | |
values.Add("subdomainAsAParameter", sub); | |
return true; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
I am trying to create sub directory base on ip address,
For example, my current website is www.nextan.biz, as my company expending business to following countryies, Australia, Singapore and Japan. So, i want to create url likes
www.nextan.biz/au/
www.nextan.biz/sg/
www.nextan.biz/jp/
I tried, to modify
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "welcome", action = "Index", id = UrlParameter.Optional}
);
routes.MapRoute(
name: "LocalizedDefault",
url: "{countrycode}/{controller}/{action}/{id}",
defaults: new { controller = "welcome", action = "Index", id = UrlParameter.Optional },
constraints: new { countrycode = "sg" }
);
countrycode - will change base on the client IP Address, but it is not working for me.
can you please help me to share some ideas.
Thank you