cree fichier htacces dans le dossier racine avec
AuthUserFile /full/path/to/
.htpasswd AuthName "Please Log In"
AuthType Basic
If we want to grant access to everyone in the .htpasswd file, we can add this line ("valid-user" is like a keyword, telling apache any user will do):
require valid-user
An .htpasswd file is made up of a series of lines, one for each valid user. Each line looks like this, with a username, then colon, then encrypted password:
username:encryptedpassword
A user of "dave" and password of "dave" might be added with the following line:
dave:XO5UAT7ceqPvc
un generateur de mot passe crypté se trouve :
http://www.addedbytes.com/lab/password-protect-a-directory-with-htaccess/#result
si vous trompez dans le chemin du .htpasswd on aura :
Erreur du serveur! Le serveur a èté victime d'une erreur interne et n'a pas été capablede faire aboutir votre requête. Soit le server est surchargé soit il s' agit d'une erreurdans le script CGI.http://www.addedbytes.com/lab/password-protect-a-directory-with-htaccess/#result
Aucun commentaire:
Enregistrer un commentaire