Содержимое страницы maintenance.html остается прежним:
<html> <head> <title>Server Maintenance</title> </head> <body> <center> <h1>Server maintenance</h1> Our apologies for the temporary inconvenience. The page is temporarily unavailable as server is down for scheduled maintenance. We will be back soon. </center> </body> </html>
Чтобы Apache выдавал страницу с кодом 503, нужно немного доработать .htaccess:
ErrorDocument 503 /maintenance.html <IfModule mod_rewrite.c> RewriteEngine on RewriteCond %{REQUEST_URI} !^/maintenance.html$ RewriteCond %{REMOTE_ADDR} !1.2.3.4 RewriteRule .* /maintenance.html [R=503,L] </IfModule>
После этого maintenance страницу будет показывать всем кроме тех, кто заходит на сайт с ip 1.2.3.4.
Комментариев нет:
Отправить комментарий