I am still building my site and I would like to know how to get it out the google search results until it's ready. I think it was automatically put in when I installed it.
I am still building my site and I would like to know how to get it out the google search results until it's ready. I think it was automatically put in when I installed it. |
Put a robots.txt file in the root of the site and tell google to not index the site; tell any robot not to index the site since you probably don't want it on Bing and other search engines. Geeks, making the world a better place |
In a nutshellWeb site owners use the /robots.txt file to give instructions about their site to web robots; this is called The Robots Exclusion Protocol. It works likes this: a robot wants to vists a Web site URL, say http://www.example.com/welcome.html. Before it does so, it firsts checks for http://www.example.com/robots.txt, and finds: User-agent: * Disallow: / The "User-agent: *" means this section applies to all robots. The "Disallow: /" tells the robot that it should not visit any pages on the site. Geeks, making the world a better place |
And to clarify the part about your assumption that it was submitted automatically when you installed it. https://www.deanbassett.com |
Thanks, I just put this robots.txt the root of my site User-agent: * Disallow: / |
Deano is correct. I have never submitted my site to any search engines and I have seen content from the site listed in search results. If you wish to remove the current listing from Google, you have to submit some form to Google I believe. Geeks, making the world a better place |
I'd consider it too late if it's already listed in the search engines. While you are developing the site you could work on it under a sub-domain such as "dev.domainname.com". Plus add the previously suggested ideas to instruct search engine bots to not index the site. http://pkforum.dolphinhelp.com |
If you have or get a free Google Webmaster Tools account you can remove individual urls, directories, or your entire site using a combination of robots.txt and the Google Index - Remove URLs feature in Webmaster Tools. DialMe.com - Your One and Only Source For Boonex Dolphin Tutorials and Resources |