What is the difference between "index, follow" or "follow"

Richard Frey Reyes picture Richard Frey Reyes · Jul 11, 2018 · Viewed 8.2k times · Source

what is the differences the lists below:

<meta name="robots" content="index, follow">

<meta name="robots" content="follow">

<meta name="robots" content="noindex, follow">

<meta name="robots" content="index, nofollow">

<meta name="robots" content="noindex, nofollow">

Answer

Mahesh Sharma picture Mahesh Sharma · Jul 15, 2018

First of all, do you know about Meta Robots Tags? Meta Robots Tags is to tell the spider or crawler which page to crawl or index or not.

Follow means : page will be crawled.
No Follow means : page will not be crawled.
Index means : your page show in search Results.
No Index means : your page does not show in search Results.


<meta name="robots" content="index, follow">

This tag tells the web crawler all pages will be indexed and to crawl them.


<meta name="robots" content="follow">

This tag is used to tell the web crawler all pages will be crawled and indexed.


<meta name="robots" content="noindex, follow">

This tag is used to tell the crawler to follow but not index the page in your database.


<meta name="robots" content="index, nofollow">

To tell the web crawler page not crawl but index them.


<meta name="robots" content="noindex, nofollow">

To tells the web crawler to neither index nor crawl.