gpt4 book ai didi

iphone - 来自 iphone/ipad 应用程序的 RewriteCond

转载 作者:行者123 更新时间:2023-12-03 19:41:35 24 4
gpt4 key购买 nike

在我的 apache 中,配置文件如下所示:

RewriteCond %{HTTP_REFERER} !^mysite.com [NC]

我构建了一个 iphone 和 ipad 应用程序,并在里面放置了一个 safari 浏览器。

如何允许应用程序(仅限我创建的应用程序)的 safari 浏览器访问图像?

最佳答案

如果您使用的是 iOS UIWebView,这可能是一个解决方案:

您可以通过在应用程序启动时运行此代码一次来更改由 WebView 发送的默认用户代理(此处我们将其更改为“UniqueAppUserAgent”)

NSDictionary *dictionnary = [NSDictionary dictionaryWithObjectsAndKeys:@"UniqueAppUserAgent", @"UserAgent", nil];
[[NSUserDefaults standardUserDefaults] registerDefaults:dictionnary];

然后使用 %{HTTP_USER_AGENT} 作为您的条件

RewriteCond %{HTTP_USER_AGENT} UniqueAppUserAgent

关于iphone - 来自 iphone/ipad 应用程序的 RewriteCond,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10740233/

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