簡體   English   中英

如何使用 Z02A3A357710CC2A5DDFFB74ED012FB59Z 重寫例如從 https://www.contoso.com 重定向到另一台服務器?

[英]How can I redirect with Url rewrite e.g. from https://www.contoso.com to another server?

How can I redirect with url rewrite eg from https://www.contoso.com to another server eg to https://www.testpage.com

您可以使用 iis url rewrite 進行重定向,並使用以下規則:

<rule name="test">
  <match url="^(.*)$" />
    <conditions>
     <add input="{HTTP_HOST}" pattern="^www.contoso.com$" />
    </conditions>
  <action type="Redirect" url="https://www.testpage.com/{R:1}" />
</rule>

暫無
暫無

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

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