文章參考: [教學]對網頁啟用密碼驗證 (Apache)
步驟1. 建立使用者
透過 “htpasswd.exe” 新增使用者 (通常放在 apache\bin 裡)
到達 “htpasswd.exe” 目錄後 輸入 “htpasswd .htpasswd your_username” 然後輸入密碼
然後會產生一個 “.htpasswd” 的檔案 (請存放在安全的位置)
“htpasswd .htpasswd your_username” 為修改密碼的指令
步驟2 . 修改httpd.conf
打開 “httpd.conf” 加入以下內容
<Directory "D:\xampp\htdocs\test"> AuthType Basic AuthName "Please input admin password" AuthUserFile "D:/xampp/apache/bin/.htpasswd" Require valid-user </Directory>