Created
April 15, 2022 11:30
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ---------------------------------------------------------------------- | |
| # 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