Not letting Google to access new site before I put content

I have a new domain name and the content on index page is from hosting company. I am wondering what is the best option to tell Google that he need to come back after 2 weeks.

Maybe something like this?

<?php
ob_start();
header('HTTP/1.1 503 Service Temporarily Unavailable');
header('Status: 503 Service Temporarily Unavailable');
header('Retry-After: 36000');
header('X-Powered-By:');
?><!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>503 Service Temporarily Unavailable</title>
</head><body>
<h1>Service Temporarily Unavailable</h1>
<p>The server is temporarily unable to service your
request due to maintenance downtime or capacity
problems. Please try again later.</p>
</body></html>

^^ :tup:

Why Not simply change your home page to have some relevant content - don’t worry about the formatting. That way Big G will index the content (keywords). Whilst that is happening concentrate developing a new homepage and when it’s ready just replace the original page with your new one. That way you may already be in the Big G index and have some insight on your chosen keywords effectiveness before you roll out your site?

If your site is going to take a while to develop then keep changing the content on the home page to make sure Big G keeps coming back for more.

[URL=“http://articles.solinky.com”]

There is no way to tell search engine that do not read his page for next two weeks. Here you can do is put the ‘robots.txt’ on your server and put the rule -
User-agent: *
Disallow: /

This will prevent the search engine bot to read the site and when you feel that your site is ready for search engine then just remove the above code from the file.

If you want to be sure then you should just add this to your robots.txt:
User-agent: *
Disallow: /

When you are ready you just remove those two lines. Google will eventually come back, to speed the crawling process up you can do some linkbuilding.

thank you. Do I need to submit this to google webmasters tools or will google find it without any help?

Why not Google??