我一直在尝试在 IIS 6 上设置我的 Beta 1 MVC 应用程序,但无法使其正常运行。我已按照其他博客文章中的建议向 .net isapi DLL 添加了通配符映射,但是当我访问网站的根目录时出现以下错误:
The incoming request does not match any route.
..
[HttpException (0x80004005): The incoming request does not match any route.]
System.Web.Routing.UrlRoutingHandler.ProcessRequest(HttpContextBase httpContext) +147
System.Web.Routing.UrlRoutingHandler.ProcessRequest(HttpContext httpContext) +36
System.Web.Routing.UrlRoutingHandler.System.Web.IHttpHandler.ProcessRequest(HttpContext context) +4
HCD.Intranet.Web.Default.Page_Load(Object sender, EventArgs e) +81
System.Web.Util.CalliHelper.EventArgFunctionCaller(IntPtr fp, Object o, Object t, EventArgs e) +15
System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) +33
System.Web.UI.Control.OnLoad(EventArgs e) +99
System.Web.UI.Control.LoadRecursive() +47
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +1436
我正在使用 MVC 模板应用程序中提供的 Default.aspx 页面,该页面正确地重写了对网站根目录的访问。
public partial class Default : Page
{
public void Page_Load(object sender, System.EventArgs e)
{
HttpContext.Current.RewritePath(Request.ApplicationPath);
IHttpHandler httpHandler = new MvcHttpHandler();
httpHandler.ProcessRequest(HttpContext.Current);
}
}
如果我尝试访问应用程序中的路由,例如 /Project,我会得到标准的 IIS 404 错误页面,而不是 .net 错误页面。
我尝试将以下行添加到我的 Web.config httpHandlers 部分:
<add verb="*" path="*" validate="false" type="System.Web.Mvc.MvcHttpHandler, System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
这给了我一个不同的错误——.net 404 错误页面。
我在我的 Global.asax 中添加了以下内容,但它什么也没做:
protected void Application_BeginRequest(object sender, EventArgs e)
{
if (Context.Request.FilePath.Equals("/"))
Context.RewritePath("Default.aspx");
}
我正在使用以下路由配置(使用 MvcContrib 项目提供的 restful 路由):
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
SimplyRestfulRouteHandler.BuildRoutes(routes);
routes.MapRoute(
"Default",
"{controller}/{action}/{id}",
new { controller = "Home", action = "Index", id = "" }
);
任何建议都会受到欢迎,因为我现在已经用尽了所有选项。
非常感谢。