0

我们有一个双语 SharePoint 网站,并希望确保所有法语内容都通过我们的法语域汇集,我们将其命名为 _frenchdomain.com。

SharePoint 中的语言变体由文件夹结构分隔,因此在我们的示例中,您可以访问 _http://englishdomain.com/en 获取英语内容,访问 _http://englishdomain.com/fr 获取法语内容。

我的问题是如何让 IIS 识别_http://englishdomain.com/fr/* 的任何实例,并将其重写为 _http://frenchdomain.com/fr/*

4

1 回答 1

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>
于 2012-06-04T13:59:21.487 回答