Control page indexing with robots meta tag

The robots meta tag indicates which pages you want search engines to crawl for indexing and/or scan for links to follow.

What is meta.robots?

meta.robots or the robots meta tag tells the search engine not to show a specific page in the search results. By default, most search engines index pages they find.

Add meta tag to header template

  1. Navigate to Site tools > Dashboard Site AdministrationTemplate directory.
  2. Find the template Site Header.
  3. Click the pencil icon to the right of it to edit.
  4. In Edit mode, add the appropriate meta tag in a DekiScript field.

Add meta tag to individual page

  1. Open a page in Edit mode.
  2. Add the appropriate meta tag in a DekiScript field.

Meta tag examples

To index pages and follow any links on that page:

meta.robots("index,follow");

To hide pages from search engines:

meta.robots("noindex");

To tell search engines not to follow links:

meta.robots("nofollow");