How to add `nofollow, noindex` all pages in robots.txt?

MeltingDog picture MeltingDog · Aug 21, 2017 · Viewed 11.6k times · Source

I want to add nofollow and noindex to my site whilst it's being built. The client has request I use these rules.

I am aware of

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

But I only have access to the robots.txt file.

Does anyone know the correct format I can use to apply noindex, nofollow rules via the robots.txt file?

Answer

Ankit Gujarati picture Ankit Gujarati · Aug 21, 2017

noindex and nofollow means you do not want your site to crawl in search engine.

so simply put code in robots.txt

User-agent: *
Disallow: /

it means noindex and nofollow.