Created
January 23, 2017 16:49
-
-
Save jlambe/2de0a1caeaa6c80ff7982c28213e21e8 to your computer and use it in GitHub Desktop.
Protect readme.md and composer.json files
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
# Protect all readme.md files. | |
<Files ~ "\.md$"> | |
Order allow,deny | |
Deny from all | |
</Files> | |
# Protect access to all composer.json files. | |
<Files ~ "composer\.json$"> | |
Order allow,deny | |
Deny from all | |
</Files> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment