2

我想根据 HTTP_URL 重写 URL 以重定向到不同的端口,同时保留 URL 的其余部分和查询字符串(如果指定)。例如,
http://host/john/page.aspx应该重定向到http://host:1900/page.aspx,
http://host/paul/anotherpage.aspx?queryhttp://host:1901/anotherpage.aspx?query
http://host/ringohttp://host:1902/
已经为每个允许的端口添加了一堆规则,但它看起来并不高效或易于管理。
我正在尝试使用地图(即 john->1900,paul->1901),但无法弄清楚如何组装所需的 URL。
有什么建议么?

4

1 回答 1

9

它需要一些摆弄才能让它工作,但回顾它,解决方案非常简单和优雅。

<rewrite>
    <rules>
        <clear />
        <rule name="Redirect known names to ports" stopProcessing="true">
            <match url=".*" />
            <conditions trackAllCaptures="true">
                <add input="{REQUEST_URI}" pattern="/(.*?)/(.*)" />
                <add input="{NameToPort:{C:1}}" pattern="(.+)" />
            </conditions>
            <action type="Redirect" url="http://{HTTP_HOST}:{C:3}/{C:2}" appendQueryString="false" redirectType="Permanent" />
        </rule>
    </rules>
    <rewriteMaps>
        <rewriteMap name="NameToPort">
            <add key="john" value="1900" />
            <add key="paul" value="1901" />
            <add key="ringo" value="1902" />
        </rewriteMap>
    </rewriteMaps>
</rewrite>

让我知道这是否是您想要的。

于 2012-11-09T12:21:39.477 回答