routing to blank request in mvc asp.net using IIS 6.0 - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T10:49:16Zhttp://stackoverflow.com/feeds/question/659465http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/659465/routing-to-blank-request-in-mvc-asp-net-using-iis-6-00routing to blank request in mvc asp.net using IIS 6.0Cptcecil2009-03-18T18:07:26Z2009-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><authentication mode="Forms" >
<forms loginUrl="~/Home.aspx/Index"
protection="All"
timeout="300"/>
</authentication>
</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#6638430Answer by Mehrdad Afshari for routing to blank request in mvc asp.net using IIS 6.0Mehrdad Afshari2009-03-19T20:10:11Z2009-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>