标签: apache http-status-code-403 http-status-code-200
我正在尝试为我们的网站设置维护页面。为此,当Apache返回维护页面时,我希望它返回状态403而不是200.这是从UI角度要求与其他应用程序集成的要求。
感谢任何帮助或指示。
由于
答案 0 :(得分:0)
使用php http_response_code函数启动维护页面:
<?php http_response_code(402); ?> Sry folks, we're off for a minute.
http://php.net/manual/en/function.http-response-code.php