IIS 7 で Excel または CSV ファイルから数百の 301 リダイレクトをインポート/更新する方法はありますか
現在、Excel ファイル形式は 2 列で構成されています。1 列目は古い URL で構成され、2 列目は新しい URL で構成されています。
https://support.3dcart.com/Knowledgebase/Article/View/297/12/how-do-i-import-my-301-redirects
web.configファイルからXML形式でリダイレクトをコピーします。例:
<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>
それを新しいメモ帳ドキュメントに貼り付けます。それをweb.xmlとして保存します。Excelで開きます。Excelは自動的にスキーマを作成し、必要な形式と同様の形式で出力する必要があります。必要に応じてさらにフォーマットします。CSVとして保存します。