想要使用301重定向将页面从旧域重定向到新域

时间:2017-02-18 11:14:09

标签: c# asp.net asp.net-mvc

我有两个域名 1. rameshmehndi.com(旧) 2. mehndigoa.com(新)

我想通过301重定向

将某些网页从旧域重定向到新域

离。 http://rameshmehndi.com/aboutus.aspxhttp://mehndigoa.com/about-us/

我该怎么做才能使用web.config

    <configuration>
  <location path="services.htm">
    <system.webServer>
      <httpRedirect enabled="true" destination="http://domain.com/services" httpResponseStatus="Permanent" />
    </system.webServer>
  </location>
  <location path="products.htm">
    <system.webServer>
      <httpRedirect enabled="true" destination="http://domain.com/products" httpResponseStatus="Permanent" />
    </system.webServer>
  </location>
</configuration>

以上代码无效

0 个答案:

没有答案