Skip to content

Instantly share code, notes, and snippets.

@wir
Forked from lynt-smitka/.htaccess
Created December 19, 2020 09:07
Show Gist options
  • Save wir/3596541a5fd8383d926ed38a72d3586c to your computer and use it in GitHub Desktop.
Save wir/3596541a5fd8383d926ed38a72d3586c 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