Skip to content

Instantly share code, notes, and snippets.

@luizfaias
Last active February 28, 2020 14:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save luizfaias/9abab5754c0b08bb7c76b73abb9ea5bb to your computer and use it in GitHub Desktop.
Save luizfaias/9abab5754c0b08bb7c76b73abb9ea5bb to your computer and use it in GitHub Desktop.
Adds the noindex meta tag to all pages on the Help Center, except the home page
<script type="text/javascript">
//prevents all pages, except the home page, from being indexed by search engines
if(window.location.pathname.match(/\/hc\/(.*)\/([a-z])/)) {
var meta = document.createElement('meta');
meta.name = 'robots';
meta.content = 'noindex';
document.getElementsByTagName('head')[0].appendChild(meta);
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment