1

我想将我的网站置于“维护模式”,这样只有我的 IP 地址才能访问它。这很容易做到这一点:

location /
{
   allow 1.1.1.1;
   deny all;
}

...但返回 403(禁止)消息而不是 503(服务不可用)错误代码。有没有办法通过“全部拒绝”返回 503?

4

1 回答 1

4

Just add this line in that location

error_page 403 =503 /error_503.html;

The /error_503.html is a normal html page that will be served with the 503 error code

于 2013-10-05T03:45:08.117 回答