One minute
Simple Auth With Htaccess
- create .htpasswd-file
- Add user with md5 hashed password (http://www.htaccesstools.com/htpasswd-generator/)
- add to .htaccess file:
AuthType Basic
AuthName "Password protected Area"
AuthUserFile /path/to/.htpasswd
require user ###USER_NAME###
README