Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 319 Bytes

.htaccess.md

File metadata and controls

22 lines (18 loc) · 319 Bytes

Restrict access to a directory

To remove the security from

AuthName "My web server"
AuthUserFile /path/to/password/file
AuthType Basic

<limit GET POST>
  require valid-user
  Allow from all
</Limit>

You can override it with

AuthType None
Require all granted
Satisfy Any

[[Url Rewriting]]