IIS URL 重写:将一个 URL 重写为另一个 URL,删除其余所有 URL

IIS URL 重写:将一个 URL 重写为另一个 URL,删除其余所有 URL

我有一个有点奇怪的要求:我们需要重写一个 URL(例如:https://inbound.domain.com/index.php)到另一个(例如:http://outbound.local.com/register.php

理想情况下,对页面的任何其他请求都应被删除。

该内部页面引用了同一服务器上的其他资源(例如,图像位于 outbound.local.com/images/

我们的其他网站通过 URL 重写运行良好,但我不知道如何过滤/限制单个页面......

我尝试将入站模式设置为“https://inbound.domain.com/index.php“并将 URl 重写为”http://outbound.local.com/register.php“但最终却出现 404 未找到的情况。

我们正在运行 IIS10/url rewrite 2.0

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <rewrite>
            <rules>
                <rule name="ReverseProxyInboundRule1" stopProcessing="true">
                    <match url="https://inbound.domain.com/index.php" />
                    <action type="Rewrite" url="http://outbound.local.com/register.php" appendQueryString="false" logRewrittenUrl="true" />
                    <serverVariables>
                        <set name="HTTP_X_ORIGINAL_ACCEPT_ENCODING" value="{HTTP_ACCEPT_ENCODING}" />
                        <set name="HTTP_ACCEPT_ENCODING" value="" />
                    </serverVariables>
                </rule>
            </rules>
            <outboundRules>
                <rule name="ReverseProxyOutboundRule1" preCondition="ResponseIsHtml1">
                    <match filterByTags="A, Form, Img" pattern="^http(s)?://outbound.local.com/(.*)" />
                    <action type="Rewrite" value="https://inbound.domain.com/{R:2}" />
                </rule>
                <rule name="RestoreAcceptEncoding" preCondition="NeedsRestoringAcceptEncoding">
                    <match serverVariable="HTTP_ACCEPT_ENCODING" pattern="^(.*)" />
                    <action type="Rewrite" value="{HTTP_X_ORIGINAL_ACCEPT_ENCODING}" />
                </rule>
                <rule name="Deal with href tags" preCondition="ResponseIsHtml1">
                    <match filterByTags="None" pattern="href=(.*?)http://outbound.local.com/(.*?)\s" />
                    <action type="Rewrite" value="href={R:1}https://inbound.domain.com/{R:2}" />
                </rule>
                <rule name="Deal with action tags" preCondition="ResponseIsHtml1">
                    <match filterByTags="None" pattern="action=(.*?)http://outbound.local.com/(.*?)\\" />
                    <action type="Rewrite" value="action={R:1}https://inbound.domain.com/{R:2}\" />
                </rule>
                <preConditions>
                    <preCondition name="ResponseIsHtml1">
                        <add input="{RESPONSE_CONTENT_TYPE}" pattern="^text/(.+)" />
                    </preCondition>
                    <preCondition name="NeedsRestoringAcceptEncoding">
                        <add input="{HTTP_X_ORIGINAL_ACCEPT_ENCODING}" pattern=".+" />
                    </preCondition>
                </preConditions>
            </outboundRules>
        </rewrite>
    </system.webServer>
</configuration>

答案1

您不应使用“重写”操作,因为它是“服务器端”重写。

你想要一个“重定向”操作来指示客户(浏览器)重新连接到另一个 URL。

为了测试目的,使用,301 – Permanent redirectType因为浏览器会缓存此响应,如果你犯了错误,你需要清空缓存。302 - Found例如使用

此外,确保“匹配”有效,我认为它应该是“index.php”或“/index.php”,而不是完整的 URL

相关内容