4
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

特定ディレクトリへのアクセスをメンテナンスページにリダイレクトさせるときの.htaccess設定

Last updated at Posted at 2018-02-22

アプリケーションのメンテナンスを行う際、特定のディレクトリをメンテナンスページにリダイレクトさせたいときがあるかと思います。

今回は、ユーザが利用するマイページ(/mypage)にアクセスがあった場合、準備したメンテナンスページ(/maintenance.html)にリダイレクトすることを想定して、設定例をメモしておきたいと思います。

また、こういうケースの場合は、メンテ作業側は動作確認のためにマイページにアクセスしたい場合があるかと思います。下記は、メンテ作業側が利用しているIPは、リダイレクトの対象から除外する設定も含んでいます。

.htaccess
ErrorDocument 503 /maintenance.html

<IfModule mod_rewrite.c>
  RewriteEngine On
  RewriteCond %{REQUEST_URI} (^/mypage)
  RewriteCond %{REMOTE_ADDR} !=xxx.xxx.xxx.xxx
  RewriteRule ^.*$ - [R=503,L]
</IfModule>

「xxx.xxx.xxx.xxx」のところに設定したIPは、リダイレクト対象外となり、マイページにアクセスできます。それ以外のIPからのアクセスは、全てメンテナンスページにリダイレクトします。

4
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?