gpt4 book ai didi

ios - 即使使用 htaccess/htpasswd 也检测苹果触摸图标

转载 作者:行者123 更新时间:2023-11-29 10:32:00 26 4
gpt4 key购买 nike

我目前有一个设置,我在 Apache 服务器上有一个 htaccess 文档,这样限制了对网站的访问:

AuthUserFile /myapps/.htpasswd
AuthName EnterPassword
AuthType Basic
<Limit GET POST>
require valid-user
</Limit>

这会提示网站访问者输入用户名和密码(在 .htpasswd 文件中指定)。

这很适合我的目的(以 HTML 格式显示原型(prototype))。

在智能手机或平板电脑上测试原型(prototype)时,我希望显示苹果触摸图标。但是,由于 .htaccess,对 apple-touch-icon.png 的请求失败了。

有没有办法在不更改 htaccess/htpasswd 设置的情况下解决这个问题?

我可以将苹果触摸图标移动到不同的位置,但我无法(不够熟练?:))将我的安全/授权设置更改为其他设置。它毕竟是一个原型(prototype),并没有真正的应用。

最佳答案

我花了一段时间才找到它,但这是我的答案的解决方案。 FilesMatch 采用正则表达式,允许您从身份验证中排除某些文件。

AuthUserFile /home/user/.htpasswd
AuthName EnterPassword
AuthType Basic
require valid-user

# Allow access to apple touch icon without authing
<FilesMatch "(apple-touch-icon\.png)">
Allow from all
Satisfy any
</FilesMatch>

关于ios - 即使使用 htaccess/htpasswd 也检测苹果触摸图标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29135748/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com