Go Back   WarriorForum - Internet Marketing Forums > The Warrior Forum > Adsense / PPC / SEO Discussion Forum
Register Blogs FAQ Social Groups CalendarHelp Desk

Reply
 
LinkBack Thread Tools
Old 06-28-2011, 03:55 AM   #1
Active Warrior
 
Join Date: Jul 2008
Location: , Norway.
Posts: 50
Thanks: 1
Thanked 0 Times in 0 Posts
Default How to use a robots.txt file?

Is it important to use robots.txt files on your website? What is it for, and how is it used? Should a robots.txt file be added to every page?

Kanute is offline   Reply With Quote
Old 06-28-2011, 04:01 AM   #2
Extreme sports addict
War Room Member
 
adrenalinfeed's Avatar
 
Join Date: Jun 2011
Location: The internet
Posts: 37
Thanks: 13
Thanked 3 Times in 3 Posts
Social Networking View Member's Myspace Profile  View Member's FaceBook Profile  View Member's Twitter Profile  View Member's YouTube Profile
Default Re: How to use a robots.txt file?

No. You donīt need to use one. But you could just write one default, as all robots visiting your site will search for it (basically to see where they are allowed to go, and where they should go).

You will only need a robots.txt file in your root folder. A robots.txt could look like this:

Code:
User-agent: *
Disallow: /i-want-this-to-be-unindexed
Sitemap: url-to-sitemap/sitemap.xml
This one says:
1. The star indicates that the robots.txt is talking to every robot.
2. Dissallowed areas to go on the server.
3. Where is the sitemap located.

adrenalinfeed is offline   Reply With Quote
Old 06-28-2011, 04:04 AM   #3
Graphic Cover Designer
 
CoverGraphix's Avatar
 
Join Date: Jun 2011
Posts: 30
Thanks: 0
Thanked 4 Times in 4 Posts
Contact Info
Send a message via ICQ to CoverGraphix Send a message via AIM to CoverGraphix Send a message via MSN to CoverGraphix Send a message via Yahoo to CoverGraphix Send a message via Skype™ to CoverGraphix
Default Re: How to use a robots.txt file?

Robots.txt is a text (not html) file you put on your site to tell search robots which pages you would like them not to visit.

In the old days it was more useful than today, but it is still useful especially if you want to exclude certain pages from being indexed.

Covers that jump off the page and force customers to pay for YOUR products!
eBook Covers - DVD Covers - CD Covers Report Covers - Notebook Covers
CoverGraphix is offline   Reply With Quote
Old 06-28-2011, 04:06 AM   #4
HyperActive Warrior
 
ashleysmith12's Avatar
 
Join Date: May 2011
Posts: 231
Thanks: 0
Thanked 6 Times in 6 Posts
Default Re: How to use a robots.txt file?

Hi,

Robots.txt file basically used to allow or disallow the directoiries by google crawler which is to index or which is not to be index.
ashleysmith12 is offline   Reply With Quote
Old 06-28-2011, 04:09 AM   #5
HyperActive Warrior
War Room Member
 
Join Date: Apr 2011
Posts: 133
Thanks: 2
Thanked 13 Times in 10 Posts
Default Re: How to use a robots.txt file?

When would you want to use the disallow? I thought that you would want every part of your site indexed?
Adam Smith is offline   Reply With Quote
Old 06-28-2011, 04:14 AM   #6
HyperActive Warrior
War Room Member
 
brunom's Avatar
 
Join Date: Sep 2010
Location: Portugal
Posts: 382
Thanks: 2
Thanked 27 Times in 26 Posts
Contact Info
Send a message via Skype™ to brunom
Default Re: How to use a robots.txt file?

Quote:
Originally Posted by bestiphone5cases View Post
When would you want to use the disallow? I thought that you would want every part of your site indexed?
If you're selling a product, you wouldn't want your thank you page indexed, now would you?

brunom is online now   Reply With Quote
Old 06-28-2011, 04:17 AM   #7
HyperActive Warrior
War Room Member
 
Chris Cole's Avatar
 
Join Date: Mar 2010
Posts: 374
Thanks: 160
Thanked 147 Times in 88 Posts
Default Re: How to use a robots.txt file?

Quote:
Originally Posted by bestiphone5cases View Post
When would you want to use the disallow? I thought that you would want every part of your site indexed?
If you have download pages, or seperate pages unlinked or standalone that you do not want everybody to see on your website.

That is of course, if you do not have some software/script protecting the your content on your sites. Then you'd want to leave pages un indexed.

Chris Cole is offline   Reply With Quote
Old 06-28-2011, 04:20 AM   #8
Graphic Cover Designer
 
CoverGraphix's Avatar
 
Join Date: Jun 2011
Posts: 30
Thanks: 0
Thanked 4 Times in 4 Posts
Contact Info
Send a message via ICQ to CoverGraphix Send a message via AIM to CoverGraphix Send a message via MSN to CoverGraphix Send a message via Yahoo to CoverGraphix Send a message via Skype™ to CoverGraphix
Default Re: How to use a robots.txt file?

Quote:
Originally Posted by bestiphone5cases View Post
When would you want to use the disallow? I thought that you would want every part of your site indexed?

Download pages, thankyou pages, members only areas that are not secured, all of those you would disallow.

But, another time to do it is when you would have duplicate content, say you have a post and you have an archive. Google doesn't want to index the same post twice, so it is best to disallow the archive so you don't double post to google.

Covers that jump off the page and force customers to pay for YOUR products!
eBook Covers - DVD Covers - CD Covers Report Covers - Notebook Covers
CoverGraphix is offline   Reply With Quote
Old 06-28-2011, 04:23 AM   #9
HyperActive Warrior
War Room Member
 
Join Date: Apr 2011
Posts: 133
Thanks: 2
Thanked 13 Times in 10 Posts
Default Re: How to use a robots.txt file?

Ahhh all makes sense now Thanks for the insight guys
Adam Smith is offline   Reply With Quote
Old 07-01-2011, 12:53 AM   #10
Active Warrior
 
Join Date: Jul 2008
Location: , Norway.
Posts: 50
Thanks: 1
Thanked 0 Times in 0 Posts
Default Re: How to use a robots.txt file?

Thanks a lot for helpful information on this topic!

Kanute is offline   Reply With Quote
Old 07-01-2011, 01:01 AM   #11
HyperActive Warrior
 
Join Date: Apr 2011
Location: Canada
Posts: 285
Thanks: 1
Thanked 10 Times in 10 Posts
Default Re: How to use a robots.txt file?

Quote:
Originally Posted by adrenalinfeed View Post
No. You donīt need to use one. But you could just write one default, as all robots visiting your site will search for it (basically to see where they are allowed to go, and where they should go).

You will only need a robots.txt file in your root folder. A robots.txt could look like this:

Code:
User-agent: *
Disallow: /i-want-this-to-be-unindexed
Sitemap: url-to-sitemap/sitemap.xml
This one says:
1. The star indicates that the robots.txt is talking to every robot.
2. Dissallowed areas to go on the server.
3. Where is the sitemap located.
you can create and upload it on your root folder

SEO Toronto - Improve Your Online Visibility
Stuart william is offline   Reply With Quote
Reply

  WarriorForum - Internet Marketing Forums > The Warrior Forum > Adsense / PPC / SEO Discussion Forum

Tags
file, robots.txt, robotstxt

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off



All times are GMT -6. The time now is 07:17 AM.