Skip to content

Instantly share code, notes, and snippets.

@jlambe
Created January 23, 2017 16:49
Show Gist options
  • Save jlambe/2de0a1caeaa6c80ff7982c28213e21e8 to your computer and use it in GitHub Desktop.
Save jlambe/2de0a1caeaa6c80ff7982c28213e21e8 to your computer and use it in GitHub Desktop.
Protect readme.md and composer.json files
# 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