8

我一直在尝试在 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 = "" }
);

任何建议都会受到欢迎,因为我现在已经用尽了所有选项。

非常感谢。

4

3 回答 3

18

这是我为使无扩展名 URL 与 IIS 6 和 ASP.NET MVC Beta 1 一起使用所做的工作。

  • 创建一个默认的 ASP.NET MVC Beta 项目并编译它。
  • 创建一个指向应用程序目录的新 IIS 网站。
  • 在网站的 IIS 属性中,单击 HomeDirectory 选项卡。
  • 单击“配置...”按钮。在“映射”选项卡中,单击“插入...”
  • 在“通配符应用程序映射”标签旁边 在文本框中,键入“c:\windows\microsoft.net\framework\v2.0.50727\aspnet_isapi.dll”
  • 取消选中标有“验证该文件是否存在”的框单击“确定”
  • 导航到 /home 成功了!

您根本不需要更改 web.config。您只需要将所有到 IIS 的请求映射到 ASP.NET Isapi dll,否则 ASP.NET 将永远不会收到这些请求。

于 2008-11-10T22:21:38.110 回答
8

好的,开始工作了。

问题是我使用 msbuild 自动化来打包我需要部署的文件,而我缺少 global.asax。

所以看起来如果 global.asax 没有部署到站点,那么没有任何路由被连接。这意味着正确点击网站根目录会导致错误“传入的请求与任何路由都不匹配。”,并且任何其他请求不再被路由到您的控制器类,因此导致 404。

HTH。

于 2008-11-12T12:47:35.227 回答
1

不幸的是,IIS 6 需要一个文件扩展名来将请求映射到正确的处理程序,这意味着您必须在控制器名称上使用 .mvc 后缀,例如 /{controller}.mvc/{action}

routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

SimplyRestfulRouteHandler.BuildRoutes(routes);

routes.MapRoute(
      "Default",
      "{controller}.mvc/{action}/{id}",
      new { controller = "Home", action = "Index", id = "" }
);

但是,解决此问题的方法取决于您对 IIS 6 服务器的控制级别。请参阅以下页面了解更多信息

于 2008-11-09T13:46:35.763 回答