我有一个带有 htaccess 和 htpasswd 的受密码保护的目录。
htaccess 看起来像这样
AuthUserFile /usr/local/you/safedir/.htpasswd
AuthGroupFile /dev/null
AuthName EnterPassword
AuthType Basic
require user myusername
htpasswd 看起来像这样
myusername:password887
这个受密码保护的目录名为 www.mydomainname.com/mystuff
现在,我想在我的根目录中的 index.php 中通过 iframe 访问这个页面(以 www.mydomain.com/mustuff/index.html 作为 src),但我不想让用户全部填写用户名和密码时间,只是让他们不要进入 src 所在的文件夹。
有没有脚本可以自动填写用户名和密码,而不让“用户”一直写用户名和密码?