您的位置:常見問題 > 網站寄存 > 網站管理
怎樣使用 htaccess 資料夾密碼保護?

1.  Telnet 到閣下的 FTP 帳戶
     telnet ftp.yourdomain.com

 

 

 

2.     建立一個密碼檔案
        閣下可透過伺服器的 htpasswd 建立密碼檔案

 

執行以下命令

htpasswd -c [檔案名稱] [用戶名稱]

例如: htpasswd -c .htpasswd testpro

 

3.     接著閣下需填上用戶密碼

如需增加新用戶,可執行以下命令

htpasswd [密碼檔案名稱] [用戶名稱]

例如: htpasswd .htpasswd testpro2

 

接著閣下需填上新用戶testpro2的密碼

 
4.      建立一個 .htaccess 密碼檔案,閣下可自行完成密碼檔案然後再上載至伺服器上,或透過 pico 文字編輯器直接建立編輯閣下的密碼檔案
 
一個密碼檔案規範主要包括以下

         AuthUserFile
         AuthGroupFile
         AuthName
         AuthType Basic

         require valid-user

 


如閣下需要保護 public_html 資料夾內的 testprotect 資料夾
AuthUserFile
必需填寫絕對路徑
假設閣下的保護資料夾在 /home/wcpdemo/testprotect 及保護密碼檔案名為 .htpasswd

請把以下檔案放在 testprotect 資料夾內


AuthUserFile /home/wcpdemo/public_html/testprotect/.htpasswd
AuthGroupFile /dev/null
AuthType Basic
AuthName Protected

require valid-user

 

提示:你可透過網站管理介面(WCP),簡易地設置資料夾密碼保護,而無需設置.htaccess資料檔