Code Snippets Gallery
Password Protect Folder(s)
Put in .htaccess file in the directory you are trying to protect:
AuthType Basic
AuthName "This Area is Password Protected"
AuthUserFile /full/path/to/.htpasswd
Require valid-userIdeally, the .htpasswd file will be not in a public facing directory. Put this in there:
chriscoyier:$apr1$O/BJv...$vIHV9Q7ySPkw6Mv6Kd/ZE/That is just a sample, you can create the code for your unique username and password here.
Note that all subdirectories of this directory will also be password protected by this same system.
Yup, very good to mention that .htpasswd should NOT be in the same directory as the directory you’re trying to protect or any other location within something alike “public_html”.
I usually put .htpasswd files in domain- or home-folders.
eg:
/home/myusername/domains/domain.com/
or
~/var/home/
–
TeMc
I am really very thanks for this information