web-dev-qa-db-ja.com

ドメイン下のすべてのリクエストを静的ページにリダイレクトする

私はmydomain.comに対するすべてのリクエストを次のようなものにリダイレクトしようとしています:

リダイレクトされる

Mydomain.comが含まれている限り、このページが表示されるはずです-すぐにメッセージが表示されます。

.htaccessまたはconfで行う必要がありますか?どうやって?

32
barfoon

私は実際にServerFaultで答えを見つけました:

https://serverfault.com/questions/32513/url-redirect-to-another-page-on-the-same-site

「この例では、すべてのURLを「/underconstruction.html」に302リダイレクトします。

RewriteEngine On
RewriteCond %{REQUEST_URI} !=/underconstruction.html
RewriteRule ^ /underconstruction.html [R=302]

(「URIが/underconstruction.htmlでない場合、/ underconstruction.htmlにリダイレクトする」と訳されます)-Tommeh

51
barfoon