guten tag
auf meiner homepage möchte ich einen Passwort geschützten bereich machen
dies geht mit htaccess wie mein betreiber sagt:
die .htaccess datei müsste so auschauen:
AuthType Basic
AuthName "Protected Area"
AuthUserFile /home/joe/.htpasswd
Require valid-user
und .htpasswd wie unten beschrieben.
es wird zwar nach der benutzererkennung gefragt.
aber man wird nicht weitergeleitet zum download
was muss ich da oben noch verändern
stammordner ist public_html/protected
Gruss Claudio
>>>>>>>>erklärung meines betreibers:
# Create the directory: mkdir ~/public_html/protected.
# Create a .htaccess file in this directory with the following content:
AuthType Basic
AuthName "Protected Area"
AuthUserFile /home/joe/.htpasswd
Require valid-user
# Create the password file with the htpasswd utility:
touch ~/.htpasswd && htpasswd -s ~/.htpasswd auser
htpasswd will prompt for the new password (yes, htpasswd has a -c switch for creating a new file, but since it's pretty easy to inadvertently erase an existing file this way I recommend using the approach with touch).
# Test your page in the browser. If it doesn't work as expected Apache's error log
decla Gast |