Friday, July 20, 2012

.htaccess 파일 설정 [How to set up .htaccess file]

0. /etc/apache2/httpd.conf 수정 : None to AuthConfig
        Options FollowSymLinks
        AllowOverride AuthConfig


1. .htaccess는 여러가지 기능을 하지만 이글에서는 인증을 통해서 웹 페이지의 보안을 향상시키는데 목적을 둔다.

2. .htaccess 파일 생성
> vi .htaccess
AuthUserFile /{Unreachable directory by web}/.htpasswd
AuthGroupFile /dev/null
AuthName Protected
AuthType Basic
require user {USERNAME}

3. .htpasswd 파일 생성
> vi /{Unreachable directory by web}/.htpasswd{USERNAME}:{:ENCRYPTED_PASSWORD}  // you can make encrypting at http://www.htaccesstools.com/htpasswd-generator/

4. Reference:
   1. http://www.cherrynet.co.kr/bbs_view.php?s=75&pseq=12&mnid=1
   2. http://www.htaccesstools.com/
   3. http://www.zappersoftware.com/Help/how-to-setup-htaccess.html

No comments:

Post a Comment