1

我有两个网站,例如“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>

任何帮助,将不胜感激!

4

1 回答 1

1

如果您可以远程访问服务器,则可以在 IIS 中执行此操作。您需要在 IIS 中启用 HTTP 重定向(添加/删除 Windows 功能),然后才能添加规则。启用后,您可以将 .ir 站点重定向到 .com 站点。见这里:http ://www.iis.net/configreference/system.webserver/httpredirect

于 2012-12-29T09:41:31.907 回答