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
            );

    }
link|improve this question
Which version of IIS do you have on server that doesn't work? – dario Jul 20 '11 at 13:34
It seems that all of your top nav links work when there is a trailing / on the end. – Jamie Dixon Jul 20 '11 at 13:34
Yes. I also tried adding the /Index on the end. The code for creating these links is below: – user801971 Jul 20 '11 at 13:59
<li>@Html.ActionLink("Store", "Index", "Store")</li> <li>@Html.ActionLink("Store", "Index", "Store")</li> <li>@{Html.RenderAction("CartSummary", "ShoppingCart");}</li> <li>@Html.ActionLink("Admin", "Index", "StoreManager")</li> <li>@Html.ActionLink("Admin", "Index", "StoreManager")</li> – user801971 Jul 20 '11 at 13:59
feedback

2 Answers

up vote 0 down vote accepted

You might need to enable ASP.NET 4.0 on IIS.

Here's how this coud be done in IIS 6.0:

enter image description here

Also you need a wildcard mapping in order to use extensionless urls for IIS 6.0 and IIS 7.0 (Classic mode). In IIS 7.0 Integrated mode you don't need to configure this mapping.

link|improve this answer
ASP.NET 4.0 is enabled on IIS and this site is using ASP.NET 4.0 – user801971 Jul 20 '11 at 14:00
Adding the wildcard mapping did help, but the Admin link is still not working. – user801971 Jul 20 '11 at 15:41
The Admin link not working was unrelated to this issue. The wildcard mapping fixed my issue. Thank you – user801971 Jul 21 '11 at 1:24
feedback

It looks like you might have IIS6 running. You need to make some adjustments so that IIS knows how to handle MVC routing. You need to set up IIS6 Extension-less URLs.

Here is an explanation on how to proceed.

link|improve this answer
It looks like IIS7 is running. – user801971 Jul 20 '11 at 17:42
feedback

Your Answer

 
or
required, but never shown