0

我正在尝试为我们的网站设置维护页面。为此,当 Apache 返回维护页面时,我希望它返回状态 403 而不是 200。从 UI 角度来看,这是与其他应用程序集成的要求。

任何帮助或指针表示赞赏。

谢谢

4

1 回答 1

0

使用 php http_response_code funkction 开始您的维护页面:

<?php
http_response_code(402);
?>
Sry folks, we're off for a minute.

http://php.net/manual/en/function.http-response-code.php

于 2015-01-08T15:38:46.683 回答