Skip to content

Instantly share code, notes, and snippets.

@jonathanstegall
Created December 13, 2018 15:29
Show Gist options
  • Select an option

  • Save jonathanstegall/5e818b839733c5c13702fd07a7e321fc to your computer and use it in GitHub Desktop.

Select an option

Save jonathanstegall/5e818b839733c5c13702fd07a7e321fc to your computer and use it in GitHub Desktop.
keep stage and dev subdomains out of search indexes
# keep stage and dev out of indexes
<IfModule mod_headers.c>
<IfModule mod_setenvif.c>
SetEnvIf Host ^stage\. NOINDEX
SetEnvIf Host ^dev\. NOINDEX
Header set X-Robots-Tag "noindex, nofollow, noarchive" env=NOINDEX
</IfModule>
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment