301从IIS 6上的web.config重定向

时间:2013-02-21 12:58:41

标签: asp.net redirect web-config iis-6 http-status-code-301

我需要在IIS 6服务器(Windows 2003 Web Server)上从web.config进行301重定向。 我是一名Apache服务器人,并且对Windows Web服务器没有任何线索。我只能从FTP访问服务器。

我在另一个问题中找到了以下内容,但它似乎确实有效:

<system.webServer>
    <rewrite>
        <rules>
        <rule name="Redirect to WWW" stopProcessing="true">
          <match url=".*" />
          <conditions>
            <add input="{HTTP_HOST}" pattern="^mydomain1.com$" />
          </conditions>
          <action type="Redirect" url="http://www.mydomain2.com"
               redirectType="Permanent" />
        </rule>
      </rules>
    </rewrite>
</system.webServer>

我需要将单独的网页从 mydomain1.com 重定向到 mydomain2.com
防爆。 mydomain1.com/somename 应重定向到 mydomain.com/someothername

如何才能做到这一点?

----编辑----
在stackoverflow上看到另一个线程后,我的配置现在看起来像这样:

<system.webServer>
    <rewrite>
        <rule name="rule1">
            <match url="default.aspx"/>
            <action type="Redirect" redirectType="Permanent" url="http://www.mydomain.com/somename/somename.aspx"/>
        </rule>
        <rule name="rule2">
            <match url="somename.aspx"/>
            <action type="Redirect" redirectType="Permanent" url="http://www.mydomain2.com/somename2/somename2.aspx"/>
        </rule>
    </rewrite>
</system.webserver><br>

---编辑2 ---- 重定向根的代码:                       

1 个答案:

答案 0 :(得分:0)

据我调查,在IIS6上无法通过web.config进行重定向。

rewritehttpRedirect伪指令只能使用相同的命令,也可以在IIS7之后使用。

但是您可以使用ISAP way with paid solution

所以,我认为Response.Redirect("direct to"); 最好的方法