Skip to content

Instantly share code, notes, and snippets.

@defrindr
Forked from lynt-smitka/.htaccess
Created November 16, 2019 00:39
Show Gist options
  • Save defrindr/ae040c5e72bc994ed60b611473b212db to your computer and use it in GitHub Desktop.
Save defrindr/ae040c5e72bc994ed60b611473b212db to your computer and use it in GitHub Desktop.
Block hidden files except .well-known - Apache .htaccess + Nginx
RewriteRule "(^|/)\.(?!well-known\/)" - [F]
location ~ /\.(?!well-known\/) {
deny all;
}
<Directory ~ "/\.(?!well-known\/)">
Order deny,allow
Deny from all
</Directory>
<Directory ~ "/\.(?!well-known\/)">
Require all denied
</Directory>
status 403 /blockdot
rewrite {
r /\.(?!well-known\/)
to /blockdot
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment