Computerhelp4all logo Articles AboutTopicsQuizzesComputer Questions & AnswersComputer Terms & DefinitionsActivitiesContact

What Is The .Htpasswd File?

What Is The .Htpasswd File

Date First Published: 22nd January 2023

Topic: Web Design & Development

Subtopic: Web Applications

Article Type: Computer Terms & Definitions

Difficulty: Advanced

Difficulty Level: 9/10

Learn more about what the .Htpasswd file is in this article.

The .htpasswd file is used to store usernames and passwords for basic authentication of HTTP users when password protecting a file, folder, or a whole website on web servers running Apache. It is used in combination with the .htaccess file. User credentials are stored on separate lines, with each line containing a username and password separated by a colon. Passwords are usually stored in a hashed format, whilst usernames are stored in plain text.

The .htpasswd file is often maintained with the shell command "htpasswd", which can add, delete, and update users and encode the password. The file can also be manually created and updated if the server cannot be accessed using SSH. An example of the contents of the .htpasswd file can be seen below:

username1:$apr1$FaPCZHMe$jYiw5.9UevKx25pBH4AsT/ username2:$apr1$mrCHcVhc$oNdJeRcWKPk2z8dlzQI0x/

The value after the username, separated by a colon, is the user's password. The hashed value is not the password that the user will enter into the site. They will enter the plain text version. The hashed version is only for the server side as storing passwords in plain text is unsafe.

When password protecting a file, directory, or whole website, the .htpasswd file is used in combination with the .htaccess file. Unlike the .htpasswd file, the .htaccess file must be stored in the directory that you want to password protect. The following lines of .htaccess code assume that the .htpasswd file is stored in a directory called /directory. You should replace that path with the actual path to your .htpasswd file.

AuthType Basic AuthName "Protected Site" AuthUserFile /directory/.htpasswd require valid-user


Feedback

  • Is there anything that you disagree with on this page?
  • Are there any spelling, grammatical, or punctuation errors on this page?
  • Are there any broken links or design errors on this page?

If so, it is important that you tell me as soon as possible on this page.