Will man z.B. seinen noch nicht öffentlichen Web-Auftritt per Passwort schützen kann man dies sehr einfach über die .htaccess Datei mit einer dazugeörigen .htpasswd Datei.
Eine gute Hilfe ist dieses php Script.
Kopiere das Script in den Ordner in dem auch die .htaccess Datei liegt (meistens der Root Ordner der Website) und rufe es im Browser über yourdomain.de/htpasswd.php auf.
Dann erscheint ähnliche Anleitung:
Instructions
Write the username and the unencrypted password into this file.
Copy this file to the directory where the .htaccess file is located and call it in the browser.
Create a .htpasswd file, copy this: username:cGyUX9QugYMgE into the file and save it in the folder where the .htaccess file is located.
Copy the following block to the end into your .htaccess file.
AuthType Basic
AuthName "Protected Area"
AuthUserFile /PATHTOHTPASSWD/.htpasswd
Require valid-user
Delete this file from your server!