2012-06-04 46 views
0

重寫我們有一個雙語SharePoint網站,並希望確保所有法文內容都通過我們的法國域名進行傳送,只需將其稱爲_frenchdomain.com即可。有條件的URL使用IIS 7.5

SharePoint中的語言變體由文件夾結構分隔,所以在我們的案例中,您可以訪問_http://englishdomain.com/en查看英文內容,使用_http://englishdomain.com/fr查看法文內容。

我的問題是如何才能讓IIS承認_http的任何實例://englishdomain.com/fr/*,而是把它改寫爲_http://frenchdomain.com/fr/*

回答

1
<rule name="fr"> 
     <match url="fr/.*"/> 
     <conditions> 
     <add input="{HTTP_HOST}" pattern="^frenchdomain.com$" negate="true" /> 
     </conditions> 
     <action type="Redirect" url="http://frenchdomain.com/{R:0}" redirectType="Permanent"/> 
    </rule> 
+0

哇 - 那很快。謝謝。我會試一試。 – cobber

+0

像魅力一樣工作。謝謝 – cobber