Disabling Search Engines from Indexing your Website/Funnel Page using Custom Tag
Preventing Search Engines from Indexing Your Website or Funnel Pages
There are times when you may want to keep a specific website or sales funnel page out of public search engine results. You can achieve this by adding a special HTML meta tag to the page's header code within your CRM.
How to Add a No-Index Meta Tag
Access the settings for the specific website or funnel page you wish to hide from search engines in your CRM. Look for a section, often labeled "Custom Code" or "Header Code," where you can insert HTML.
To instruct the majority of search engine crawlers not to index the page, add the following meta tag:
Name: robots
Content: noindex
<meta name="robots" content="noindex">
If your goal is to block indexing specifically by Google's crawler while potentially allowing others, use this tag instead:
Name: googlebot
Content: noindex
<meta name="googlebot" content="noindex">
After inserting the appropriate code, save the changes to your page. It's important to note that search engines may take some time to process this directive and remove the page from their indexes. This method is a standard and widely respected way to control indexing.