簡體   English   中英

IIS 使用(URL 重寫)重定向到另一個域

[英]IIS using (URL Rewrite) to Redirect to another domain

trying to redirect from https://www.domain.info/cms-cp/login.html to https://www-server2.domain.info/cms-cp/login.html by using the following code for (URL Rewrite ) 插件,但不幸的是無法正常工作。

<rule name="Redirect To Web2 Server CMS"  enabled="true" stopProcessing="true">
    <match url="(.*)" />
    <conditions>
            <add input="{HTTPS}" pattern="^(www.domain.info/cms-cp/login.html)$" />
    </conditions>
    <action type="Redirect" url="https://www-server2.domain.info/cms-cp/login.html" redirectType="Permanent" /> 
</rule>
<rule name="Redirect To Server2" patternSyntax="ECMAScript"  enabled="true" stopProcessing="true">  
    <match url="login.html" />
    <conditions trackAllCaptures="false">
        <add input="{HTTP_HOST}" pattern="^www\.domain\.info$" ignoreCase="true" />
    </conditions>
    <action type="Redirect" url="https://www-server2.domain.info/cms-cp/login.html" redirectType="Permanent" />
</rule>

{HTTPS} 只是一個布爾值,用於檢查 https 是否已啟用。 所以你可以像這樣應用規則

<rule name="Redirect To Web2 Server CMS" stopProcessing="true">
                    <match url="(.*)" />
                    <conditions>
                        <add input="{HTTPS}" pattern="^on$" />
                        <add input="{HTTP_HOST}" pattern="www\.domain\.info" />
                        <add input="{URL}" pattern="^/cms-cp/login.html$" />
                    </conditions>
                    <action type="Redirect" url="https://www-server2.domain.info/cms-cp/login.html" />
                </rule>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM