Create a robots.txt file
The robots.txt file is used to instruct search engine robots about what pages on your website should be crawled and consequently indexed. Most websites have files and folders that are not relevant for search engines (like images or admin files) therefore creating a robots.txt file can actually improve your website indexation.
A robots.txt is a simple text file that can be created with Notepad. If you are using Wordpress a sample robots.txt file would be:
User-agent: *
Disallow: /wp-
Disallow: /feed/
Disallow: /trackback/
“User-agent: *” means that all the search bots (from Google, Yahoo, MSN and so on) should use those instructions to crawl your website. Unless your website is complex you will not need to set different instructions for different spiders.
“Disallow: /wp-” will make sure that the search engines will not crawl the Wordpress files. This line will exclude all files and foldes starting with “wp-” from the indexation, avoiding duplicated content and admin files.
If you are not using Wordpress just substitute the Disallow lines with files or folders on your website that should not be crawled, for instance:
User-agent: *
Disallow: /images/
Disallow: /cgi-bin/
Disallow: /any other folder to be excluded/
After you created the robots.txt file just upload it to your root directory and you are done!
Related Articles
Bookmark
81 Responses to “Create a robots.txt file”
- Existential Ventures » I was Having Problems with my Robots.txt File
- Nicky's blog ℡
- Existential Ventures » Blog Archive » I was Having Problems with my Robots.txt File
- Creating A WordPress Robots.txt To Improve SEO | Connected Internet
- Creating the ultimate WordPress robots.txt file | Twenty Steps
- Create A Robots.txt File And Increase Your Search Engine Rankings
- fiLi's tech
- New life journal » 如何设置WordPress的robots.txt
- xenical
- SEO Sitemaps Now Autodiscoverable: Easy and Automatic Roadmaps to Your Blog Content | Adventures of stevenlichen
- Gesu`, notes from stambugia » Blog Archive » Creare mappa del sito e robots.txt per il proprio blog
- Concentrating on robots.txt specifically for Wordpress
- Collection of Robots.txt Files
- rapidhit.co.uk
- SEO Sitemaps Now Autodiscoverable: Easy and Automatic Roadmaps to Your Blog Content | Quentin Brown
- Cactuus » Blog Archive » Weekly link love
- Blog Setup: 40 Practical Tips
- WordPress SEO Techniques to Avoid Duplicate Content | Better Blogging with Michael Martine
- Pajama Mommy>>Mommy Blogger Community » Blog Archive » Want PR? Technorati? Visitors?
- Keep A Test Site Of Your WordPress Blog
- Tuto de l’été n°3: créez un fichier robots.txt pour votre blog Wordpress
- Top 10 basic SEO Tips to build high traffic web site
- 3G空间 » Blog Archive » 如何设置WordPress的robots.txt
- Control Search Engine Robots » ABlogCo.com
- Control Search Engine Robots » ABlogCo.com
- Creating the ultimate WordPress robots.txt file
- 40 de sfaturi despre cum să îţi faci un blog | CNET.ro
- 建博40个实用技巧 | 精品博客
- Control Search Engine Robots : MarketingVoice.net
- 如何设置WordPress的robots.txt | 汪立民的Blog
- Create A Robots.txt File And Increase Your Search Engine Rankings | Free Download Blogs:: News and Articals
- Check if Your Images Appear on Google Image Search
- Control Search Engine Robots : MarketingVoice.net
- Anonymous
- Setting up Blog for the first time in WordPress??? Need a Step by Step Guide ?? No Problem.. have a look at the given resource at DailyBlogTips | Rahul's Blog
- Check if Your Images Appear on Google Image Search at make money online from home
- Check if Your Images Appear on Google Image Search | www.brand-forge.com
- 如何设置WordPress的robots.txt - 北街博客
- Top 10 basic SEO Tips to build high traffic web site » Katams Org
- Beginner’s SEO Guide | Web Design Wolverhampton
- Understanding robots and spiders | TechZoomIn
- WPMU.org - WordPress MU plugins, themes and news » » WPMU robots.txt done globally



Subscribe to our RSS Feed





I agree that robots.txt files are important, however I disagree with blocking the images folder. Some sites achieve some pretty good traffic numbers from google image search, blocking this directory will block your images from showing up in these results.
Same with Wordpress. If you disallow “/wp-” then it’s not going to index any of your uploads like images since they are in your wp-content folder. I get quite a bit of traffic from Google Image Search.
I am not sure if the GoogleImage bot tracks down images from the /images/ folder or directly from the posts where the images where inserted.
In fact if I think the latter option is true, because the content of the page, the keywords and the alt tag play an important role on the image search algorithm.
In that case Disallowing the image folder should not affect your incoming traffic from image searches.
Nice post. Great reminder of how you can easily protect folders and files on your server.
I guess disalowing “wp-” will not affect Google Image bot from crawling your images because it crawls them from the post and not from the directory
Thilak, unless I am mistaken, wouldn’t the Google Image Bot be following the rules of the robots.txt file regardless of where it starts crawling from?
Bes, if I am not the wrong the Google Image Bot will not need to crawl your image folder at all. It will crawl your pages, and it will index all the images on those pages (i.e. posts).
One other thing to consider blocking is any duplicate content on your side. Wordpress gives you about three thousand ways to access content (/page, /tag, direct links, etc). Blocking some of them might be a good idea.
But I’m not an SEO and I have no idea what should be blocked.
Daniel, that is not the case, rules of robots.txt are always followed no matter where the index is followed from.
Excluding wp- and wp-content will block out indexing of your images.
You will need to seperately allow the folder you want.
I suggest using Webmaster Tools to analyze your robots.txt to give you a proper understanding of what is allowed / blocked.
Also I am not sure if /trackback/ will disallow everything with /trackback/ can you get this confirmed?
Ajay /trackback/ will disallow all the trackback pages, and I also think we should disallow comments, but I am not sure if /comment/ is the right attribute for that.
Secondly, regarding the indexing of images, it is true that with the /-wp the images on your upload folder will not be indexed, but they do not have to. I still think that Google indexes images through web pages, regardless of whether it crawls the image folder or not. I will research more about it though.
Just to let you know there is an example robots.txt for wordpress at http://www.askapache.com/2007/.....tstxt.html
Its full of nice tips.. like some robots can recognize wildcards like /wp-* but some can’t.
Great article mate. I’m still unsure what needs to be excluded though. But there is some stuff that needs to be blocked to avoid duplicate content. Cheers
Thanks for the post, very helpful. Is there any problem with doing it like this:
Disallow: */feed/
Disallow: */trackback/
Also, when you do:
Disallow: /wp-
don’t you need a star, like:
Disallow: wp-*
or is it better to just do this:
Disallow: /wp-admin/
Disallow: /wp-includes/
Also, now with sitemap inclusion, you should consider updating this to have:
Sitemap: http://www.site.com/sitemap.xml
in there for those using the google sitemap plugin.
thanks again!
John, regarding the first question: not all search bots recognize the * attribute. Some people argue that the Google Bot specifically does not interpret the * as a joker, it just ignores it. That is why I avoid using it. Plus, it should not be necessary to add it before a folder like */feed/.
Secondly, I am also not sure about the /wp- working for all folders that begin with that. In fact, on my latest robots.txt file I added all the folders that were to be excluded individually like /wp-admin/ and /wp-includes/.
How do I upload the robots.txt to the root directory using WordPress?
you can’t upload robots.txt to the root directory using Wordpress - it doesn’t have an FTP function. The only way it would be possible is if someone associated “robots.txt” as a theme associated file, and you could edit and save it in “theme editor” under the “presentation” tab. You wouldn’t think it would be too difficult to associate a file with a theme by modifying a little code, but presently I don’t know how to do it.
Otherwise, you have to do it with an FTP program.
The particual robot.txt file is an important choice from the SEO point of view. Thanks for the original approach to the problem!
I’m going to check some other txt…
I was curious, my blog isnt installed in the root but instead a folder on my side.
so for instance instead of /wp-admin I would have /blogfolder/wp-admin
Does that change things, should I set it up differently, could you give me a hand?
If I am not wrong, even if the blog in on a sub-folder, the robots.txt file should still go on the root directory since it is the first thing a search bot will look for.
Thanks Daniel I know that the robots.txt file should still go in the root, I just want to know if I have to change the robots file to look inside my new blog installation directory
like
disallow: /blogfolder/wp-admin
for instance
Derek, I see what you are asking now.
I think both
disallow: /blogfolder/wp-admin/
and
disallow: /wp-admin/
would work fine.
So many people with so many ideas!!! I like the ideas in general to block robots to avoid duplicate contents. But in my opinion duplicate contents should be avoided at the url level. Dont allow your cms to generate more then one url of the same post.
I have posted my thought on my blog. Have a look.
Yes Great Post
But can you give me tips regarding how to use sitemap effectively
I think there is no harm in allowing the Bots to assecc your images folders. It can bring traffic through the Google image search
Its nice that people are beginning to think about controlling robots with robots.txt.. You may want to look at my updated wordpress robots.txt file on AskApache, especially regarding the digg mirror, way back archiver, etc..
@ http://www.askapache.com/seo/u.....press.html
thanks for info
Although this post didn’t discuss why and how a certain robots.txt file with some certain entries is best, you made sure people should understand what those codes mean. This is something I have never seen on any other site on my quest to find the best robots.txt file for better SEO. Thank you very much for that.
I hope you would take the pain to come with a robots.txt file and explain why and how it is better, which would really help a lot of people like me. Thanks again.
Thanks for the post, very helpful.
gracias justo lo que necesitaba
I feel robots are much more important to be placed on the root of the site directoy
it had really inceared my ranking
http://www.ehotbid.com
gem and jewelry auction starting from $2
喜欢,借鉴,学习
I’m confused can someone just give me the correct text for a wordpress blog. Will uploading it from notepad work then?
Sue, yes you create the robots.txt file in Notepad and upload it to your server. The robots.txt is a simple text file. You can also create it in the text editing function that is probably available within your file manager on the server that hosts your site. As for the text you can check out http://www.doughroller.net/robots.txt to see what I did (I run Wordpress). I took this code from ask apache. Good luck.
Thanks for the post. While uploading the robots.txt file, it has been kept under “/” and “/public_html” folders. Which is the correct root directory?
It should be under your public_html, as that’s the folder of your root files under your domain
—
Michael Aulia
http://www.michaelaulia.com
I just found this article as I searched for robots.txt wordpress SEO. I did this search after checking my google webmaster tools. Go gave me a bund of warnings about unfound pages. These specifically included trackback and feed pages which you exclude in your robots.txt file. Thanks for the valuable help,
Richard
Is there a way to do this on blogger?
Thank you, this Example has me very helped. But why was not already a robots.txt during the installation process?
Great tutorial, thanks for sharing this with us.. I’ve learn a lot.