::::::::::::::: 리눅스 서버 - 아파치 폴더 패스워드 주기 ::::::::::::::::::::::::
1. 해당권한을 줄 폴더에 .htaccess 파일 생성
AuthName "User Authorization" AuthType Basic AuthUserFile /home3/sm/public_html/t/.htpasswd AuthGroupFile /dev/null
<Limit GET> require valid-user </Limit>
2. 아파치 config
<Directory /해당디렉토리절대경로 > Options FollowSymLinks AllowOverride ALL Order deny,allow Deny from all </Directory>
해당 유저추가 /usr/local/apache/bin/htpasswd -c /home3/sm/public_html/t/.htpasswd sm
패스워드 등록/확인
유저삭제시 /usr/local/apache/bin/htpasswd -D .htpasswd sm |