Deployed the mvc 4 site on hosting server but the all the links of the site landing to logon page instead of their respective pages. I tested my Routes even and the application is running fine on my local.
Here are my Routes
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapHttpRoute(
name: "DefaultApi",
routeTemplate: "api/{controller}/{id}",
defaults: new { id = RouteParameter.Optional }
);
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "logon", action = "Index", id = UrlParameter.Optional }
);
Please give me solution for this.