I'm trying to deploy the MvcMusicStore on my website, but I'm running into some issues with the page navigation at the top. I'm getting a 404 not found error on these links. I think this is a routing issue, but it works locally. The odd thing is the genre links also work on the page. I've included the link to my deployment site as well as the routing code.
http://mybeatonpath.com/MvcMusicStore"
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new {controller = "Home", action = "Index", id = UrlParameter.Optional} // Parameter defaults
);
}
