TOP ▲ itcore TOPTIPSmente.php  タグ:hp 工事中 .htaccess リダイレクト 移行

HPに工事中のページを表示する。 | itcore 2019年

mente.html メンテナンス中ページ

<!DOCTYPE html>
<html><head>
<title>メンテナンス中</title>
<meta charset="utf-8">
</head> <body><center>
<br>
ただいまメンテナンス中です。<br>
<br>
株式会社ITコア<br>
<br>
お急ぎの場合は以下へご連絡ください。<br>
info@itcore.jp<br>
</center>
</body>
</html>

.htaccess エラーページ方式

ErrorDocument 503 /mente.html
<IfModule mod_rewrite.c>
  RewriteEngine On
  RewriteCond %{REQUEST_URI} !=/mente.html
  RewriteRule ^.*$ - [R=503,L]
</IfModule>

.htaccess リダイレクト方式

<IfModule mod_rewrite.c>
  RewriteEngine On
  RewriteBase /
  RewriteCond %{REQUEST_URI} !=/mente.html
  RewriteRule ^.*$ /mente.html [R=301,L]
</IfModule>

テスト

http://www.itcore.jp
https://www.itcore.jp/xxx

mente.html メンテナンス終了 DNS切り替え先の新サーバなど

<meta http-equiv="refresh" content="0;URL='/'" />