Redirect all requests to ASP.NET MVC on IIS6 - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T03:00:30Zhttp://stackoverflow.com/feeds/question/217597http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/217597/redirect-all-requests-to-asp-net-mvc-on-iis61Redirect all requests to ASP.NET MVC on IIS6Graphain2008-10-20T05:43:11Z2008-10-20T06:35:59Z
<p>Hi,</p>
<p>I am probably overlooking something really simple here but I am trying to redirect all bad URLs to an action that filters the URL based on conditions and then either 301 redirects to a suitable page or issues a 404 page.</p>
<p>To this end I have a route like this at the end of my route table:</p>
<pre><code>routes.MapRoute("Error", "{*url}", new { controller = "Main", action = "Error" });
</code></pre>
<p>And an action like this:</p>
<pre><code>public ActionResult Error(string url)
{
if (/* Conditions are met... */)
{
Response.Status = "301 Moved Permanently";
Response.AddHeader("Location", /* Destination URL */);
Response.End();
}
Response.StatusCode = 404;
return View(/* 404 page... */));
}
</code></pre>
<p>This works perfectly locally.</p>
<p>However, when deployed to IIS6, URLs that don't include .mvc (e.g. oldfile.php) are never sent to the ASP.NET process for routing.</p>
<p>Is there a simple solution / am I overlooking something?</p>
<p>EDIT :
This is related to <a href="http://stackoverflow.com/questions/108813/404-http-error-handler-in-aspnet-mvc-rc-5">this question</a>, however under IIS6 URLs without .mvc are not being sent for ASP.NET MVC processing.</p>
http://stackoverflow.com/questions/217597/redirect-all-requests-to-asp-net-mvc-on-iis6/217634#2176344Answer by SaaS Developer for Redirect all requests to ASP.NET MVC on IIS6SaaS Developer2008-10-20T06:06:17Z2008-10-20T06:06:17Z<p>More than likely when you deployed to the Server, ASP.Net is not being invoked.</p>
<p>I would setup wildcard mapping in IIS so your requests will use ASP.Net to serve the requests. </p>
<p>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>
<p>For more information please visit the source that helped me with this issue at: <a href="http://blog.codeville.net/2008/07/04/options-for-deploying-aspnet-mvc-to-iis-6/" rel="nofollow">http://blog.codeville.net/2008/07/04/options-for-deploying-aspnet-mvc-to-iis-6/</a></p>