Webmaster tips » Apache

Dec 23, 2007
Max Bulber

How to Restrict Access to a Directory Using Password Authentication

Average rating:
  • 5 out of 5 Stars
Rate this article

This article explains how to restrict access to directories with HTTP Basic Authentication.

Generate password file

At first, you need to create your password file. It can be done two methods:

  1. Using our online .htpasswd generator tool (the easier way).
  2. Using htpasswd utility (the standard way).

Using our online .htpasswd generator

Generate .htpasswd files with our password tool is easy: just enter desired username and password and get the file.

Using htpasswd for creating password files

htpasswd utility is bundled with Apache and used to create and update the flat-files used to store usernames and password for basic authentication of HTTP users.

htpasswd encrypts passwords using either a version of MD5 modified for Apache, or the system's crypt() routine. Files managed by htpasswd may contain both types of passwords; some user records may have MD5-encrypted passwords while others in the same file may have passwords encrypted with crypt().

Basically, to create password file you need to execute htpasswd with several arguments:

htpasswd -cb passwdfilename username password

where [-c] switch means "create the passwdfile" and [-b] means "get the password from the command line rather than prompting for it". For list of all htpasswd switches invoke htpasswd -h

Upload your .htpasswd

Now you need to upload password file you've generated to your web server. For security, you should not upload the .htpasswd file to a directory that is web accessible. Password file should be placed above your www root/htdocs directory. After uploading is complete, you need to find out the full path to this file. Please note that this is not an URL, and this is not a FTP server path, this is a full filepath (on the unix systems it will be something like /home/user/path/.htaccess).

Hint: You can create a small PHP script which outputs the current server path: <?php
echo getcwd();
?>

Create .htaccess directives

Create an .htaccess file in the directory you wish to password protect (if you don't have one yet). If you place this file in your web root directory, it will password protect your entire web site.

The authorization directives may look like this:

AuthName "Restricted area"
AuthUserFile /home/loginname/.htpasswd
AuthType Basic
require valid-user

You should enter path to your .htpasswd file in AuthUserFile line. You can also supply another AuthName (it will be used in a prompt).

Now you can test your password protection. Password will be required for access to the folder you specified and all underlying files and folders.


Print! Print this article   Bookmark:

About The Author
This article was written by Max Bulber specially for the Webmaster Tips & Tools
Rate This Article
How would you rate the quality of this content? Currently rated: 5 out of 5 stars. 1 people have rated this article.
Use your mouse pointer to select as many stars as you want, and press the left mouse button to vote.
  • 5 out of 5 Stars
  • 1
  • 2
  • 3
  • 4
  • 5
Other Apache Articles