routing to blank request in mvc asp.net using IIS 6.0 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T10:49:16Z http://stackoverflow.com/feeds/question/659465 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/659465/routing-to-blank-request-in-mvc-asp-net-using-iis-6-0 0 routing to blank request in mvc asp.net using IIS 6.0 Cptcecil 2009-03-18T18:07:26Z 2009-03-19T20:25:57Z <p>I'm attempting to connect to my published website using the following url. <a href="http://www.mywebsite.com/" rel="nofollow">http://www.mywebsite.com/</a> I keep getting: The incoming request does not match any route. Here are my routing rules:</p> <pre><code>routes.MapRoute( "Default", // Route name "{controller}.aspx/{action}/{id}", // URL with parameters new { controller = "Home", action = "Index", id = "" } // Parameter defaults ); routes.MapRoute( "Default2", // Route name "/", // URL with parameters new { controller = "Home", action = "Index", id = "" } // Parameter defaults ); </code></pre> <p>I'm using authentication as such:</p> <pre><code>&lt;authentication mode="Forms" &gt; &lt;forms loginUrl="~/Home.aspx/Index" protection="All" timeout="300"/&gt; &lt;/authentication&gt; </code></pre> <p>When I'm not authenticated it goes to the correct page, but when I am authenticated it throws the above error. I'm using IIS 6.0 and doing the whole rewriting url workaround option.</p> <p>What am I missing?</p> http://stackoverflow.com/questions/659465/routing-to-blank-request-in-mvc-asp-net-using-iis-6-0/663843#663843 0 Answer by Mehrdad Afshari for routing to blank request in mvc asp.net using IIS 6.0 Mehrdad Afshari 2009-03-19T20:10:11Z 2009-03-19T20:25:57Z <p>Change <code>"/"</code> in "Default2" route to <code>""</code>:</p> <pre><code>routes.MapRoute("Default2", "", new { ... }); </code></pre> <p>Also make sure you have followed this guide: <a href="http://haacked.com/archive/2008/11/26/asp.net-mvc-on-iis-6-walkthrough.aspx" rel="nofollow">http://haacked.com/archive/2008/11/26/asp.net-mvc-on-iis-6-walkthrough.aspx</a> for <code>Default.aspx</code> file if you are on IIS6.</p>