Control access to a web page via htpasswd
- Create a user in the htpasswd
> htpasswd -c .htpasswd username
New password:
Re-type new password:
Adding password for user username
> cat .htpasswd
username:$apr1$BiOIHeaO$STWAx0jyCcwrqcREs4zCS1
- Configure the access in the
.htaccess
file
AuthType Basic
AuthName "Access restricted"
AuthUserFile /path/to/the/.htpasswd
Require user username