在Apache和Linux/Unix上使用htaccess和htpasswd对文件夹/目录进行密码保护
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在Apache和Linux/Unix上使用htaccess和htpasswd对文件夹/目录进行密码保护相关的知识,希望对你有一定的参考价值。
Good info here too: http://www.ilisys.com.au/support/linux-password-protect/
Step 1 - Create .htaccess file in folder you want to protect, copy the code and paste the code below, and then set server path to the file AuthUserFile /path/to/.htpasswd AuthName "Restricted Area" AuthType Basic Require valid-user Step 2 - Open Terminal, go to the directory you want to protect, and enter the following (changing the username to whatever you want). Enter the password upon prompting. htpasswd -c .htpasswd username
以上是关于在Apache和Linux/Unix上使用htaccess和htpasswd对文件夹/目录进行密码保护的主要内容,如果未能解决你的问题,请参考以下文章
将整个进程状态存储在磁盘上并稍后恢复? (在 Linux/Unix 上)