I have added an MVC3 web application to an existing website that consists of plain old html files. This works great when you request a specific file but what didn't occur to me was that by changing the site to use .Net 4 it no longer took any notice of the default documents setting in IIS (IIS 6 in this case). So for example I can request www.something.com/index.html but if I request www.something.com I get a resource not found error page. Is there a MapRoute in Global.asax I can specify to map the site route url to index.html?
|
That's normal. IIS 6.0 does not support extensionless urls. You will need a wildcard mapping as explained by Phil Haack. |
|||
|
|
|
in global.asax you can try to define a rules like this one
But I'm afraid that with IIS 6 you have to handle the |
|||||
|
Allows the request to fall through to the default documents defined in the site configuration. I only have a single controller and route in this project that I use for ajax requests from the client. I want the rest of the site to continue to behave as it did when it was just plain html. With routes.IgnoreRoute("/") the MVC3 app ignores the request which allows IIS to return the default document. Thanks all for your suggestions. |
|||
|
Looks like something has changed, I had to do
ASP.NET complained about the route starting with "/" |
|||
|
|
http://www.something.com/you definitely need a wildcard mapping as explained by Phil Haack. If you want to serve a static HTML page then simply add this html page as default document in the properties of the virtual directory in the IIS console. – Darin Dimitrov Sep 18 '11 at 21:04