我有两个域名 1. rameshmehndi.com(旧) 2. mehndigoa.com(新)
我想通过301重定向
将某些网页从旧域重定向到新域离。 http://rameshmehndi.com/aboutus.aspx至http://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>
以上代码无效