웹마스터 팁

.htaccess 의 내용

AuthType Basic
AuthName "movie"
AuthUserFile c:/apm/apache2/htdocs/a/.htpasswd
<Limit GET POST>
require valid-user
</Limit>


.htpasswd 의 내용

aaa:0000

암호화 하지 않으면 동작하지 않을때가 있음.

//암호화
//먼저 c:/apm/apache2/bin 안의 htpasswd.exe 파일을 a 폴더 안으로 복사해넣는다.
실행 > command
cd ..
c:/ cd apm
apm:/ cd apache2
apache2:/ cd htdocs
htdocs:/ cd a
a:/  htpasswd -c .htpasswd aaa
.............
..........