Password Protect a File
If you are using assistive technology and are unable to read any part of the HostMonster website, or otherwise have difficulties using the HostMonster website, please call 866-573-HOST and our customer service team will assist you.
Skip to main content

HostMonster Web Hosting Help

Password Protect a File

Summary

The easiest method of password protecting a single file on your hosting account is to first password protect the directory which contains that file. This can be done using the Password Protect Directory tool in your cPanel.

This article will show you how to manually password protect a directory (folder) on your account.

Password Protect a Directory

When you Password Protect a directory, the system will place configurations into a file called '.htaccess'. This file will be located in the folder that you protected.

In the .htaccess file will be statements such as the following:

    AuthType Basic
                AuthName "Restricted Area"
                AuthUserFile "/home/[username]/.htpasswds/public_html/passwd"
                require valid-user

You will now need to modify the .htaccess file so that it applies the statements to a specific file. This is done with the following tags:

    <Files [filename]></Files >
                

In this example, we will protect the file 'secure.html'. This is done by modifying the .htaccess statement as follows:

    <Files secure.html>
                  AuthType Basic
                  AuthName "Restricted Area"
                  AuthUserFile "/home/[username]/.htpasswds/public_html/passwd"
                  require valid-user
                </Files>

This can also be used to protect multiple individual files in directory, the method is very similar, however this time use Apache’s FilesMatch directive. This allows us to list as many files as needed:

    <FilesMatch "(secure\.html)|(secure\.txt)">
                  AuthType Basic
                  AuthName "Restricted Area"
                  AuthUserFile "/home/[username]/.htpasswds/public_html/passwd"
                  Require valid-user
                </FilesMatch>

Note: To add files, include more instances of “|(filename\.ext)”.

Knowledgebase Article 285,417 views bookmark tags: file passwd password prompt protect secure single


Was this resource helpful?

Did this resolve your issue?


Please add any other comments or suggestions about this content:





Recommended Help Content

How do I password protect a folder on my website?
Knowledgebase Article 312,300 views tags: folder password protect

Accessing your account is as easy as entering your domain name and password on the login screen, or clicking one of our Single Sign-On options.
Knowledgebase Article 387,500 views tags: authentication factor login management password sign single sso

What should I do if I am having problems with multiple password prompts on my password protected directory?
Knowledgebase Article 240,363 views tags: folder password protect

Related Help Content

How do I change my Control Panel password?
Knowledgebase Article 1,707,379 views tags: change cpanel password passwords protect

How can I protect the images on my website?
Knowledgebase Article 289,187 views tags: click code image images javascript protect save saving script tips tricks

This article will explain how to change the password for a database in the event that the original password is lost.
Knowledgebase Article 261,157 views tags: database mysql password

How do I use a secure FTP connection?
Knowledgebase Article 384,113 views tags: ftp secure sftp shell ssh

This article explains the different password types for your hostmonster account.
Knowledgebase Article 231,475 views tags: billing cpanel hosting main password

The hosts file is a plain text file that allows you to set IP Addresses for a domain on your computer. This may override authoritative DNS.
Knowledgebase Article 111,323 views tags: admin development dns file hosts ip test

I am prompted to set a new MySQL password. What does this mean and how do I change it?
Knowledgebase Article 246,971 views tags: connect database mysql password phpmyadmin username

How to force https on entire website.
Knowledgebase Article 376,959 views tags: htaccess ssl website

This site utilizes JavaScript to function correctly. Looks like it's disabled on your browser. Please enable it for your best experience.

For instructions on enabling JavaScript, click here