0

我想将所有网址(如http://domain.com/xxx/yyyyy.html )重定向到我的 ASP.NET MVC 应用程序。我为我的站点打开了 Handler Mappings 并添加了以下规则:

在此处输入图像描述

在 web.config 它看起来像:

  <system.webServer>
    <handlers>
            <add name="HTML Rewriter" path="*.html" verb="*" modules="IsapiModule" scriptProcessor="C:\Windows\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" resourceType="Unspecified" requireAccess="Script" preCondition="classicMode,runtimeVersionv4.0,bitness32" />
    </handlers>
</system.webServer>

在 asp.net mvc 应用程序的路由中:

    routes.MapRoute(
        "xxx", // Route name
        "{ext}/{filename}.html", // URL with parameters
        new { controller = "Mycontr", action = "Index" } // Parameter defaults
    );

但是当我尝试打开这个 url 时,我得到了 404 文件未找到。为什么?它在 IIS express 下本地工作

4

1 回答 1

0

添加处理程序后,您必须执行它...

转到编辑功能设置...选择执行选项...

并将此处理程序添加到服务器级别的 ISAPI 和 CGI​​ 限制..它将解决问题

于 2014-01-07T06:02:56.413 回答