Skip to content

Instantly share code, notes, and snippets.

@ianpegg
Created April 15, 2022 11:30
Show Gist options
  • Select an option

  • Save ianpegg/bb141075f23944d867a7cdfdfd0d42ce to your computer and use it in GitHub Desktop.

Select an option

Save ianpegg/bb141075f23944d867a7cdfdfd0d42ce to your computer and use it in GitHub Desktop.
Prevent search engines from indexing documents by file extension - useful for keeping promos secret
# ----------------------------------------------------------------------
# Prevent search engines from indexing documents by file extension - useful for keeping promos secret
# ----------------------------------------------------------------------
<IfModule mod_headers.c>
<FilesMatch "(\.(pdf|doc|docx|odt)|~)$">
Header set X-Robots-Tag "noindex, noarchive, nosnippet"
</FilesMatch>
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment