Skip to main content
All CollectionsProjects
How to block search indexing with 'noindex'
How to block search indexing with 'noindex'
Julius avatar
Written by Julius
Updated over a week ago

You can prevent a ExploreMyPC project from appearing in Google Search by including a noindex meta tag in the header HTML code. When Googlebot next crawls that page and sees the tag or header, Googlebot will drop that page entirely from Google Search results, regardless of whether other sites link to it.

Implementing noindex

To prevent most search engine web crawlers from indexing your ExploreMyPC project, place the following meta tag into the <head> section of your project using our Code Injection feature:

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

To prevent only Google web crawlers from indexing a page:

<meta name="googlebot" content="noindex">

You should be aware that some search engine web crawlers might interpret the noindex directive differently. As a result, it is possible that your page might still appear in results from other search engines.


Did this answer your question?