htpasswdはBasic認証を利用してページのアクセスを制限をするコマンド。
ユーザの追加 (初回)
# htpasswd -c 保存先 ユーザ名
$ htpasswd -c /foo/.htpasswd user1
ユーザの追加(2回目以降)
# htpasswd 保存先 ユーザ名
$ htpasswd /foo/.htpasswd user2
ユーザの削除
# htpasswd -D 保存先 ユーザ名
$ htpasswd -D /foo/.htpasswd user1
参考
htpasswd - Manage user files for basic authentication - Apache HTTP Server Version 2.4