HTTP status code for temporarily unavailable pages

HttpHttp Status-Codes

Http Problem Overview


I'm redesigning my small business' website. I will be putting up a temporarily 'under construction' splash page. I know, I know... but it will be one in style, I hope. :)

What, mostly for SEO purposes, is the best HTTP status code to dish out for the URLs that will be temporarily unavailable (the same URLs will have content again, after the new site is up).

Now, my website traffic is hardly of any importance, but as a webdeveloper I want this knowledge in my toolbox for possible future client projects. And what better way to test and experiment with this, now that I have a convenient 'reason' with my own website.

Here's a few I thought about:
503 looks appealing, but is in the category of server errors.
204 looks appealing as well, but I'd rather temporarily redirect to the splash page.
307 looks like the best choice, but I'm not entirely sure.

There are a few others as well. So I'm curious to hear your advice. Thanks

Http Solutions


Solution 1 - Http

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.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionDecent DabblerView Question on Stackoverflow
Solution 1 - HttpJan K. S.View Answer on Stackoverflow