Problem
I want to prevent certain pages from being indexed and appear in search results.
Solution
You can add data-sj-noindex
anywhere in a page and it will not be indexed. Most commonly this will be defined in the header of an HTML page as follows:
Locate the
<header>
tag of the page you want to prevent from being crawled.Add the following code within the header:
<meta name="robots" content="noindex" data-sj-noindex />
Save the changes. The crawler will ignore this page next time it comes across it.
Related articles
https://www.sajari.com/docs/user-guide/indexing-data/advanced-crawler