Robots.txt’s basic function is to define rules and instruct search engine robots (web-robots) on how to crawl pages on their website. The robots.txt file is a basic component of the “robots exclusion protocol” (REP), a set of rules of web standards that control how robots crawl the websites, access and index content, and serve that content material up to users.
The REP also includes directions like meta robots, page content, media files, and subdirectory. The REP also includes site-wide instructions for how search engines should treat web links.
Practically robots.txt files allow, whether specific user agents such as “web-crawling software” can or cannot crawl the different parts of a website. These crawl guidelines are specified by allowing or disallowing the patterns of particular user agents.
Basic format: User-agent: * Disallow: /
We have a big question here. Why do we need robots.txt?
Robots.txt files actually control (Robots) crawler access to particular fields/URL/directories of your site. It could be hazardous if Googlebot is
accidentally disallowed from crawling. Be careful while creating or editing your robots.txt file; some certain situations in which a robots.txt file can be beneficial.
Some common uses of Robots.txt
-
Avoiding duplicate content from appearing in SERPs.
-
Keeping private the entire sections of a website.
-
Keeping internal search results pages from showing up on a public SERP
Specifying the location of sitemap(s)
-
Blocking search engines from indexing particular files on your website includes any media file like images and PDFs.
-
You can also specify a crawl delay to minimize your servers from becoming overloaded when crawlers load multiple contents at once.
SEO best practices
- Keep in mind that Links on pages blocked by robots.txt will not be followed or crawled.
That means - if any link you blocked is also linked from any other search engine-accessible pages, the linked asset/content or information will not be crawled and may not be indexed on those search engines like bing or Yandex, etc.
- No link equity can be crawled from the blocked page to the linked resources. If you have any specific pages to that you want equity to be crawled, use any other blocking system other than robots.txt.
- Never use robots.txt to protect sensitive data like “private user information” from showing up in SERP results because other web pages may link directly to that page containing private information. Therefore by skipping the robots.txt directives on your root directory (domain or homepage), it may still get indexed. So, If you want to block your specific page or information from indexing, use any method like “NOINDEX meta directive” or password protection.
- Typically, search engines have multiple user-agents. For example, Google utilizes Googlebot for organic search and Googlebot-Image for image search. The same search engine’s user agents follow the same rules, so there is no need to have specific directives for each of a search engine’s multiple agents.
- A search engine will cache the robots.txt contents but usually update the cached contents once a day. If you change the file and update it more quickly than it is taking place, you can submit your robots.txt URL to Google.
Some basic concepts you must know
- robots.txt file must be placed in a website’s top-level (root)directory.
- the file |should always be named the same as “robots.txt.”
- Some user agents (robots) might decide to ignore the robots.txt file. This is specifically common with more negative crawlers like email address scrapers and malware robots.
- The www.example.com/robots.txt file is publicly available. Just add /robots.txt to the end of any root domain to see that website’s directives, which means anyone can see what web-pages you do or don’t want to be crawled,
- Each domain and subdomain must have separate robots.txt files. That means both www.blog.yoursite.com and www.yoursite.com must have their own separate robots.txt files on their root directories.
- It is a best practice to add the website’s sitemaps linked with the domain at the bottom of the file.
For example User-agent: Bingbot Disallow: /example-subfolder/blocked-page.html Sitemap: https://www.xyz.com/sitemap.xml
How to create a robots.txt file
If you found that your website doesn’t have a robots.txt file, you can easily create it by sung notepad or any other text editor—copy that created robot.txt file into your website’s root directory (example: ww.xyz.com/robot.txt). You can copy this file using a FileZilla FTP client or Cpanel. After copying the file, you need to set 644 file permission.
The simplest and most powerful robots.txt setting/rules, which I recommend to the best of my limited knowledge, are given below.
Example No. 1
User-Agent: * Allow: /wp-content/uploads/ Disallow: /wp-content/plugins/ Disallow: /wp-admin/ Disallow: /readme.html Disallow: /refer/ Sitemap: https://www.yourdomainname.com/sitemap_index.xml
You can copy that lines into your robots.txt, or you can modify your existing file.
Note: replace www.yourdomainnmae.com/sitemap_index.xml with your own website’s domain name and Sitemap.xml name.
Another robots.txt file example that I want to share with you is:
Example No. 2
User-agent: * Disallow: /wp-admin/ Allow: /wp-admin/admin-ajax.php Allow: /wp-content/themes/your theme name/ User-agent: Mediapartners-Google* Allow: / User-agent: Googlebot-Image Allow: / User-agent: Adsbot-Google Allow: / User-agent: Googlebot-Mobile Allow: / User-agent: Twitterbot Allow: / User-agent: * Disallow: /search Disallow: /cgi-bin/ Allow: / User-agent: * Disallow: /*.html Allow: /*.html$ Sitemap: https://www.yourdomainname.com/sitemap_index.xml
But you can see separate rules defined for each User-agent, which is a little complicated for newbies. So, therefore, I recommend the first example for the beginners