Max Bulber
How to Restrict Access to a Directory Using Password Authentication
| Average rating: 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:
- Using our online .htpasswd generator tool (the easier way).
- 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).
<?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 this article Bookmark:
About The Author
Rate This Article
Use your mouse pointer to select as many stars as you want, and press the left mouse button to vote.
Other Apache Articles
- Are You Ready for High Volume Traffic? by Nick Krotov (Jan 24, 2007)
- Mod_Rewrite For Newbies by Bobby Handzhiev (Jan 24, 2007)
- Apache htaccess for PHP web application deployment by Nathan C. Dickerson (Jul 28, 2006)
- 6 Tips To Secure Your Website by David Risley (Jul 2, 2006)
- 301 Redirect - The SEO way to rename or move files or folders by Andrei Smith (Jan 18, 2006)
Tips & Tricks
Webmaster Tools
Syndicate
Sponsored
Statistics
Validate