1 頁 (共 1 頁)

設定需要密碼進入頁面( .htaccess and .htpasswd)

發表於 : 週四 2月 16, 2006 4:41 pm
布魯斯
設定需要密碼進入頁面( .htaccess and .htpasswd)
1. 必須先編輯httpd.conf 檔案

修改 AllowOverride to All
修改 AllowOverride None 改成 AllowOverride All

2. 建立 .htaccess 檔案

AuthType Basic
AuthName "Protection"
AuthUserFile /data/www/.htpasswd
require valid-user

3. 建立 .htpasswd 檔案

htpasswd -c /data/www/.htpasswd bruce

執行 htpasswd 並依據你所需鍵入參數.
建立.htpasswd 檔案

4. 重新啟動Apache