【发布时间】:2015-08-14 15:11:44
【问题描述】:
我已设置供内部使用的 iOS 企业应用分发,并通过 .htaccess 文件对其进行保护。
AuthType Basic
AuthName "Password Protected Area"
AuthUserFile http://domain.com/path/.htpasswd
Require valid-user
还有一个 index.html 文件
<a href="itms-services://?action=download-manifest&url=https://domain.com/path/enterprise_viewer.plist">
但问题是,每当用户在浏览器中打开 index.html 时,它会要求输入 3 次密码,一次用于访问,第二次和第三次是在单击下载链接后。
任何将密码提示减少到 1 的建议。
【问题讨论】:
标签: ios .htaccess password-protection in-house-distribution