Deploy asp.net mvc beta to iis 6 causing 404's - Stack Overflow most recent 30 from stackoverflow.com 2009-11-25T05:28:26Z http://stackoverflow.com/feeds/question/239981 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/239981/deploy-asp-net-mvc-beta-to-iis-6-causing-404s 5 Deploy asp.net mvc beta to iis 6 causing 404's Guy 2008-10-27T14:04:01Z 2009-11-24T06:22:24Z <p>I'm struggling to get around the 404 errors from asp.net mvc beta when deploying on IIS 6. I had this working in one of the previews by mapping .mvc in IIS but this no longer works. I've read <a href="http://msmvps.com/blogs/omar/archive/2008/06/30/deploy-asp-net-mvc-on-iis-6-solve-404-compression-and-performance-problems.aspx" rel="nofollow">Omar's post</a> and several others on the web and tried their solutions but no luck so far.</p> <p>The home page opens without a problem on IIS 6 but others 404 and the site runs well on IIS 7.</p> <p>Has anybody deployed asp.net mvc beta to IIS 6 with success? If so, what adjustments did you need to make to the code and/or IIS settings to get it to work?</p> http://stackoverflow.com/questions/239981/deploy-asp-net-mvc-beta-to-iis-6-causing-404s/240001#240001 0 Answer by leppie for Deploy asp.net mvc beta to iis 6 causing 404's leppie 2008-10-27T14:08:40Z 2008-10-27T14:08:40Z <p>I am so thankful I have not upgraded yet from CTP 5 :) </p> http://stackoverflow.com/questions/239981/deploy-asp-net-mvc-beta-to-iis-6-causing-404s/240327#240327 11 Answer by Guy for Deploy asp.net mvc beta to iis 6 causing 404's Guy 2008-10-27T15:36:35Z 2008-10-27T15:36:35Z <p>I found a solution to my problem from <a href="http://blog.codeville.net/2008/07/04/options-for-deploying-aspnet-mvc-to-iis-6/" rel="nofollow">Steve Sanderson's blog</a> (Thanks Steve):</p> <blockquote> <p>Option 1: Use a wildcard mapping for aspnet_isapi.dll This tells IIS 6 to process all requests using ASP.NET, so routing is always invoked, and there’s no problem. It’s dead easy to set up: open IIS manager, right-click your app, go to Properties, then Home Directory tab, then click Configuration. Under Wildcard application maps, click Insert (not Add, which is confusingly just above), then enter C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspnet_isapi.dll for “Executable”, and uncheck Verify that file exists.</p> </blockquote> http://stackoverflow.com/questions/239981/deploy-asp-net-mvc-beta-to-iis-6-causing-404s/1788192#1788192 0 Answer by Alex Ilyin for Deploy asp.net mvc beta to iis 6 causing 404's Alex Ilyin 2009-11-24T06:22:24Z 2009-11-24T06:22:24Z <p>Url rewriting can help you to solve the problem. I've implemented solution allowing to deploy MVC application at any IIS version even when virtual hosting is used. <a href="http://www.codeproject.com/KB/aspnet/iis-aspnet-url-rewriting.aspx" rel="nofollow">http://www.codeproject.com/KB/aspnet/iis-aspnet-url-rewriting.aspx</a></p>