Skip to content

Instantly share code, notes, and snippets.

@brainv
Forked from lynt-smitka/.htaccess
Created December 6, 2019 22:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brainv/50fbde1385fb0f1cbbeafadbc90a1094 to your computer and use it in GitHub Desktop.
Save brainv/50fbde1385fb0f1cbbeafadbc90a1094 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