我有一个指向多个域的网站应用程序。
我想要的是,如果用户访问domain1.com,那么他们应该重定向到 https ://www.domain1.com
并暂停所有指向相同应用程序的域使用不使用https (例如 http ://www.domain2.com / http :// www.domain3.com)
域必须重定向如下:
在代码下面重写除https域之外的其他内容。
<rule name="domain1" stopProcessing="true">
<match url="^www.domain1.com$" negate="true" />
<action type="Rewrite" url="otherdomain/{R:1}" />
</rule>
提前提供帮助。感谢
答案 0 :(得分:0)
您可以尝试以下配置吗?
<rules>
<rule name="Remove WWW prefix" stopProcessing="true">
<match url="(.*)" ignoreCase="true" />
<conditions>
<add input="{HTTP_HOST}" pattern="^www\.domain1\.com$" />
</conditions>
<action type="Redirect" url="https://www.domain1.com/{R:1}" redirectType="Permanent" />
</rule>
</rules>