The Easy Guide to Making a Robots.txt File

If you have a website you really need to have aDisallow:
robots.txt file. It gives search engine spiders specificThe first line tells all spiders to listen up because the
commands and it is easy to use and easy to maintain.following command is for you. The second line means
Here is an easy guide to a robots.txt file in fivedo not index any of the following pages. And it is here
minutes.you put the url of any pages you don’t want
There are times when you don’t want a searchspidered. So if you wanted the spiders to skip your
engine to index a page or a folder on your website.private page it looks like this:
Maybe you have some information you just don’tDisallow:/privatepage.htm
want to have show up in google. This may includeIf you want the spiders to skip a whole folder you put
your statistics page, a page of notes, or a dynamicthe url of that folder with a slash like this:
page. And, importantly, if you use google adsense andDisallow:/privatefolder/
the search tool that displays search results on yourSimply place this text file in the root folder of your
website google mandates you exclude this page fromwebsite and you are done. In the future you can add
search engines. Which means they mandate youand remove commands easily.
having a robots.txt file.The robots.txt file is a very easy file to write and
A robots.txt file is a simple document named robots.txtmaintain and it is a very powerful tool that will help you
and saved in the root folder of your website. Searchinteract successfully with search engines. This disallow
engines see this and follow any commands it contains.command is the simplest and most used command but
Create a simple text document using any wordthere are also many other commands you can use
processor program like notepad and put these twoand if you have a website it is well worth your time to
lines it:have a robots.txt file and even to research it a bit
User-agent: *further.