Click here to Skip to main content
15,949,686 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Dear All,

how can i make a routing for sub domains


C#
routes.MapRoute(
          name: "Default",
          url: "{Country}/{lang}/{controller}/{action}/{id}",
          defaults: new { Country = "US", lang = "en-US", controller = "Home", action = "Index", id = UrlParameter.Optional }
      );

the link will show like

http://localhost/US/en-US/home/index

how will work after i host it on the domain like

http://us.example.com/en-US/home/index

kindly if you can provide me a solution
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900