1

.net Web サイトにリダイレクトする必要があるリンクがいくつかあります。たとえば、http://www.example.com/products/productname.aspxにリダイレクトするには、 http://www.example.com/products/productname (現在は存在しません) が必要です。

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