【发布时间】:2012-12-14 08:36:53
【问题描述】:
我有两个网站,例如“testsite.ir”和“testsite.com”。据我所知,我的网站位于 Windows Server 2008、Microsoft-IIS/7.5 上。 如何使用 301 重定向将用户从 .ir 重定向到 .com? 我可以使用 .htaccess 文件还是应该使用 webconfig?
我在我的 webconfig 中使用下面的代码,但没有任何反应:
<rule name="Redirect from ir to com" stopProcessing="true">
<match url=".*" />
<conditions>
<add input="{HTTP_HOST}" pattern="^www\.testsite\.ir$" />
</conditions>
<action type="Redirect" url="http://www.testsite.com/{R:0}" />
</rule>
任何帮助将不胜感激!
【问题讨论】:
标签: asp.net .net iis redirect web