Using .htpasswd with Your Linux Shared Hosting Account
Print this Article
Comment on this Article
Last Updated:
August 8, 2011 10:21 AM
To protect a directory in your hosting account with a password, in that directory, create an .htaccess file that contains the following:
AuthUserFile /absolutehostingpath/.htpasswd
AuthGroupFile /dev/null
AuthName "EnterPassword"
AuthType Basic
require valid-user
AuthGroupFile /dev/null
AuthName "EnterPassword"
AuthType Basic
require valid-user
Where /yourabsolutehostingpath is your hosting account's absolute hosting path. For more information, see Finding Your Hosting Account's Absolute Path.
The AuthUserFile describes where the Web server looks for the .htpasswd file. The .htpasswd file contains a list of users who have access to a protected directory and their hashed passwords. There are a number of tools available online to create .htpasswd files.
NOTE: Our servers are configured to prevent the downloading of both .htaccess and .htpasswd files.