是否可以使用 Microsoft Rewrite Module 2.0 for IIS 7 在 web.config 中创建 307 重定向规则?目标是将一些发布表单请求重定向到同一域中的另一个路径。
问问题
1899 次
1 回答
5
将动作标签的redirectType属性设置为“临时”
例如。
<rewrite>
<rules>
<rule name="RedirectRule" stopProcessing="true">
<match url="(.*)" ignoreCase="true" />
<action type="Redirect" url="http://www.newdomain.com/{R:1}" redirectType="Temporary" />
<conditions>
<add input="{HTTP_HOST}" pattern="www\.old-domain\.com" />
</conditions>
</rule>
</rules>
</rewrite>
于 2012-09-27T13:53:23.560 回答