於欲限制存取目錄的 .htaccess 檔案新增以下內容。
AuthType Basic
AuthName "Restricted Files"
AuthUserFile /home/doe/public_html/.htpasswd
Require valid-user
新增使用者 jsmith 至已存在的 /home/doe/public_html/.htpasswd 密碼檔:
$ htpasswd /home/doe/public_html/.htpasswd jsmith
若密碼檔不存在,產生新密碼檔(-c 參數) 且新增使用者 jane:
$ htpasswd -c /home/doe/public_html/.htpasswd jane
參考資料
- Authentication Tutorial, http://httpd.apache.org/docs/current/howto/auth.html
- Apache Tutorial: .htaccess files, http://httpd.apache.org/docs/current/howto/htaccess.html
- htpasswd, http://httpd.apache.org/docs/2.0/programs/htpasswd.html
No comments:
Post a Comment