我有两个网站,例如“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>
任何帮助,将不胜感激!