2017-04-03 46 views
0

我有一種情況,我們的客戶端通過負載平衡運行基於Umbraco的網站,並且我們有以下規則將請求重定向到所有這些服務器域「https://www.ourclient.co.uk」。僅在路徑以'/ umbraco /'結尾時重定向到管理子域

這對重定向代碼:

<!-- Canonicalize all domains to a single domain --> 
<rule name="SEO - http canonical redirect" stopProcessing="true" enabled="false"> 
    <match url="(.*)"/> 
    <conditions logicalGrouping="MatchAll" trackAllCaptures="false"> 
     <add input="{HTTP_HOST}" pattern="^www\.ourclient\.co\.uk" negate="true"/> 
     <add input="{HTTP_HOST}" pattern="^admin\.ourclient\.co\.uk" negate="true"/> 
     <add input="{HTTP_HOST}" pattern="^01-live\.ourclient\.co\.uk" negate="true"/> 
     <add input="{HTTP_HOST}" pattern="^02-live\.ourclient\.co\.uk" negate="true"/> 
     <add input="{HTTP_HOST}" pattern="^03-live\.ourclient\.co\.uk" negate="true"/> 
     <add input="{HTTP_HOST}" pattern="^04-live\.ourclient\.co\.uk" negate="true"/> 
    </conditions> 
    <action type="Redirect" url="https://www.ourclient.co.uk/{R:1}"/> 
</rule> 

現在我要實現的是https://www.ourclient.co.uk/umbraco/任何請求重定向到https://admin.ourclient.co.uk/umbraco/,但對我的生活我只是不能得到任何工作。

任何對解決方案的幫助都將非常受歡迎,因爲對我的文章所做的任何更正都是如此。

回答

0

只需添加一條新規則即可。

<rules> 
    <rule name="SEO - http canonical redirect"> 
      ... your old stuff ... but exclude the admin.yourclient.com/umbraco (!) 
    </rule> 
    <rule name="redirectUmbracoToAdminSite"> 
     <match url="(.*)" /> 
     <conditions> 
      <add input="{HTTP_HOST}" pattern="^yourclient\.com$" negate="true" /> 
      <add input="{REQUEST_URI}" matchType="Pattern" pattern="^umbraco" ignoreCase="true" negate="false" /> 
     </conditions> 
     <action type="Redirect" url="http://admin.yourclient\.com/{R:1}" /> 
    </rule> 
</rules> 
相關問題