1

我有几 (4) 个链接需要在 .net 网站中重定向。例如,我需要http://www.example.com/products/productname(现在不再存在)重定向到http://www.example.com/products/productname.aspx

如何在 web.config 中设置 301 重定向?

谢谢!

目前我有以下内容:

<location path="draft_root_beer">
<system.webServer>
<httpRedirect enabled="true" destination="~/products/draft_root_beer.aspx"     httpResponseStatus="Permanent" />
</system.webServer>
</location>
4

1 回答 1

0

如果只是添加“.aspx”,我建议你使用URL Rewriting,链接会更好地进行 SEO。否则你会像下面这样:

<location path="productname">
    <system.webServer>
      <httpRedirect enabled="true" destination="http://www.example.com/products/productname.aspx" httpResponseStatus="Permanent" />
    </system.webServer>
  </location>
于 2013-04-15T18:29:50.460 回答