cloudflare R2 存储CORS 策略配置多域名的方法
cloudflare R2 存储CORS 策略配置多域名的方法
设置CORS策略解决静态资源跨域的问题
下面是cloudflare R2 存储CORS 策略配置多域名的方法,创建cloudflare R2 存储桶,上传,密匙不再详细累坠了
进入cloudflare R2 存储编辑CORS 策略,添加下面的代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[
{
"AllowedOrigins": [
"https://demo.net",
"https://www.demo.net",
"https://demo.com",
"https://www.demo.com"
],
"AllowedMethods": [
"GET"
],
"AllowedHeaders": [
"*"
]
}
]
1
2
"AllowedHeaders"
"*"
表示任意user agent 加载其中包括用户浏览器直接访问