暂时无法使用的页面的 HTTP状态码

我在重新设计我的小企业网站。我将暂时建立一个“正在建设中”的启动页面。我知道,我知道... 但我希望它会很时髦。:)

什么,主要是为了搜索引擎优化的目的,是最好的 HTTP状态码分发的网址,将暂时无法使用(相同的网址将再次有内容,在新的网站上)。

现在,我的网站流量几乎没有任何重要性,但作为一个网站开发人员,我希望在我的工具箱为可能的未来客户端项目的知识。还有什么更好的方法来测试和实验这一点,现在我有一个方便的“理由”与我自己的网站。

下面是我想到的一些:
503看起来很吸引人,但是属于服务器错误的范畴。
204看起来也很吸引人,但我宁愿暂时转向启动页面。
307看起来是最好的选择,但我不是很确定。

还有一些其他的。所以我很好奇想听听你的建议。谢谢

49658 次浏览

I disagree to the selected answer. I would use the 503 code.

According to the RFC for HTTP/1.1:

503 Service Unavailable

The server is currently unable to handle the request due to a temporary overloading or maintenance of the server. The implication is that this is a temporary condition which will be alleviated after some delay.

Yes, it should be an error, because the expected page will not appear.