ASP.NET MVC website getting redirected to local IIS instead of IIS express on any browser
问题 Aim: Locally run ASP.NET MVC website on IIS express on any browser. History: The project in concern is an ASP.NET MVC website which initially was setup to use Local IIS with SSL enabled. I tried to set it up on IIS express: RouteConfig.cs file public static void RegisterRoutes(RouteCollection routes) { routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); routes.MapRoute( name: "Default", url: "{controller}/{action}/{id}", defaults: new { controller = "Home", action = "_View", id = UrlParameter