Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试为我们的网站设置维护页面。为此,当 Apache 返回维护页面时,我希望它返回状态 403 而不是 200。从 UI 角度来看,这是与其他应用程序集成的要求。
任何帮助或指针表示赞赏。
谢谢
使用 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