web-dev-qa-db-ja.com

メンテナンス中にIIS 7のホームページにページをリダイレクトする方法は?

IIS 7のWebサイトがあります。

メンテナンス時にユーザーをサイト内の他のサブページからホームページにリダイレクトする必要があります。

例えば

ユーザーがhttp://www.example.com/products/234を要求した場合

デフォルトのメッセージを表示するシステムが必要です。メンテナンス中のサイトは404エラーではありません

IIS 7でどのように実行できますか?

3
Eugene
<configuration>
   <system.webServer>
      <httpRedirect enabled="true" exactDestination="true" httpResponseStatus="Found">
         <add wildcard="*.php" destination="/default.htm" />
      </httpRedirect>
   </system.webServer>
</configuration>
2

app_offline.htm機能を使用できます。これについてStackOverflowには素晴らしい答えがあります。

app_offline.htmの使用方法

これを.Netサイトに使用し、うまく機能しています。

1
nthonygreen