IIS重写删除.html导致404 Not Found

问题描述 投票:0回答:1

我正在使用ASP.NET Web API并尝试将带有.html(http://www.example.com/api/TestPlay/Main/Authenticate.html)的URL重写为没有(http://www.example.com/api/TestPlay/Main/Authenticate)的URL,该URL路由到名为“TestPlay”的区域,名为“MainController”的Controller和名为“Authenticate”的Action。但是,我得到的只是404 Not Found。

我在web.config中安装了URL Rewrite Module 2.1和以下代码。还有什么我应该做的吗?

<system.webServer>
    <rewrite>
        <rules>
            <rule name="Test Rewrite" stopProcessing="false">
                <match url="(.*)/api/TestPlay/(.*).html(.*)" />
                <action type="Rewrite" url="{R:1}/api/TestPlay/{R:2}" />
            </rule>
        </rules>
    </rewrite>
    <handlers>
        <remove name="ExtensionlessUrlHandler-Integrated-4.0" />
        <remove name="OPTIONSVerbHandler" />
        <remove name="TRACEVerbHandler" />
        <add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />
    </handlers>
</system.webServer>
asp.net-web-api url-rewrite-module iis-10
1个回答
0
投票

你的规则中的正则表达式是错误的。正确的规则应该是:

<rule name="Test Rewrite" stopProcessing="false">
    <match url="^api/TestPlay/(.*).html" />
    <action type="Rewrite" url="/api/TestPlay/{R:1}" />
</rule>

因为<match url="中的regexp应该是请求路径的regexp而不是开始斜杠。例如,在您的情况下,URL重写将比较此字符串api/TestPlay/Main/Authenticate.html与regexp ^api/TestPlay/(.*).html

© www.soinside.com 2019 - 2024. All rights reserved.