|
|
|
|
|
|
|
|
|
|||||||
![]() |
![]() 9.9¢/minute Conference Calling |
![]() |
||||||||||||
|
|
|
|
|
|
|
|||||||||
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
InfoTeam.Net Home Call Toll Free 1.877.819.0414 |
||||||||||||||
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
InfoTeam Support |
CONTACT SUPPORT | ||||
| Email Web Hosting Internet Access Billing | System Status & Scheduled Maintenance | |||||
|
||||||||
|
Using .htaccess to Password Protect Web Pages If you want to password protect some of your web pages, then you need to use a .htaccess file with a .htpasswd password file. These instructions will tell you step-by-step what you need to do. Please note that when you password protect web pages you are actually password protecting an entire directory (and everything in it). | What You Need | You will be executing commands directly on the web server, and the only way to do it is via SSH. SSH is basically a secure form of telnet and you can use SSH to do anything you might typically do with telnet. So, you must have a SSH client to connect to the web server via SSH. Please see our Telnet and SSH page for more information, including links to free SSH clients. You will also need a FTP client if you want to create your .htaccess file on your own system, then upload it to the web server. Please note that if you create your .htaccess file on your system, then FTP it to the web server, you must save the file as plain text on your system and FTP it as ASCII. The only other thing you need is a FTP/SSH account from InfoTeam. This would simply be your FTP account information that you received when your service started. To connect via SSH you would just use the same hostname, username, and password as your FTP account. | Step By Step Instructions | Let's suppose you want to restrict files in a directory called members to username memberone with password memberonepassword. Here's what to do: (1) Create a file called .htaccess in directory members that looks like this: AuthUserFile /vip/infoteam.com/.htpasswd
AuthName "restricted access"
AuthType Basic
<Limit GET>
require valid-user
</Limit>
IMPORTANT NOTES:
Also note that AuthName can be anything you want. The AuthName field gives the Realm name for which the protection is provided. This name is usually given when a browser prompts for a password, and is also usually used by a browser in correlation with the URL to save the password information you enter so that it can authenticate automatically on the next challenge. (2) Use the htpasswd command, from your root directory, to create SSH to your root directory. This is simply done by connecting with your SSH client and NOT entering any path, and NOT changing directories after connecting. After connecting to your root directory via SSH, enter: htpasswd -c .htpasswd memberone Type the password -- memberonepassword -- twice as instructed. That's all. Now try to access a file in directory members -- your browser should demand a username and password, and not give you access to the file if you don't enter memberone and memberonepassword. | Multiple Usernames/Passwords | If you want to give access to a directory to more than one username/password pair, follow the steps above to create the .htaccess file and to create the .htpasswd file with one user. Then, add additional users to the .htpasswd file by using the htpasswd command without the -c: htpasswd .htpasswd membertwo
htpasswd .htpasswd memberthree
htpasswd .htpasswd memberfour
| Changing Passwords | If you want to change the password for an existing user, simply issue the same command as when you added the user. You will then be prompted for a new password. For example, if the user membertwo already exists and you want to change the password, just SSH to your root directory and enter: htpasswd .htpasswd membertwo | Password Protecting Multiple Directories | If you want to password protect multiple directories, and allow all users access to all password protected directories, then all you need to do is put the same .htaccess file in each directory that you want to password protect. However, if you want to password protect multiple directories, and only allow certain users access to each directory, then you can create a different password file (all in your root directory) for each password protected directory. Let's say you have 3 different directories (members, admins, board) you want password protected, and each one has a different set of users that you want to allow access. Then just do the following: Create three .htaccess files and put them in their appropriate directory: AuthUserFile /vip/infoteam.com/.htpasswd.members
AuthName "restricted access"
AuthType Basic
<Limit GET>
require valid-user
</Limit>
AuthUserFile /vip/infoteam.com/.htpasswd.admins
AuthName "restricted access"
AuthType Basic
<Limit GET>
require valid-user
</Limit>
AuthUserFile /vip/infoteam.com/.htpasswd.board
AuthName "restricted access"
AuthType Basic
<Limit GET>
require valid-user
</Limit>
REMEMBER, replace infoteam.com with your domain name. Create three .htpasswd files in your root directory: htpasswd -c .htpasswd.members memberone
htpasswd -c .htpasswd.admins adminone
htpasswd -c .htpasswd.board boardmemberone
That's it. Now when you need to add a user to one of the directories, just issue the htpasswd command on the appropriate .htpasswd file. NOTE: There is NO correspondence between the usernames and passwords used for any InfoTeam accounts on any InfoTeam servers and usernames and passwords in any specific .htpasswd file. A user does NOT need to have an InfoTeam account in order to be validated for access to password protected directories. |
||||||
|
|
||||||
|
Copyright © 1996-2009 InfoTeam Corporation All rights reserved worldwide |
|
Subscription Agreement (Terms & Acceptable Use Policy) InfoTeam's Privacy Policy |
||||