.htaccess / Apache

Discussion in 'Server Operation' started by kermit, May 13, 2005.

  1. kermit

    kermit New Member

    I want to password-protect a directory with .htaccess. How can I do that?
     
  2. deedee

    deedee New Member

    First, you have to create a file called .htaccess in the directory you want to password-protect:

    Code:
    AuthType Basic
    AuthName "Members Only"
    AuthUserFile /path/to/your/.htpasswd
    <limit GET PUT POST>
    require valid-user
    </limit>
    Then create the file /path/to/your/.htpasswd which contains the users that are allowed to login and their passwords. You can use the htpasswd command for it:

    Code:
    htpasswd /path/to/your/.htpasswd user1
    htpasswd /path/to/your/.htpasswd user2
    ...
    Obviously you have to adjust /path/to/your/.htpasswd :D
     

Share This Page