Appreciate, respect and accept it, don't take it for granted

透過AWS S3 Static Web設定Redirect

2021-07-30

因為時間的關係, 工作上有一個需求, 希望使用自家domain先預留能夠接住已經發布的版本所送出的請求, 以避免後期使用者不想升版所造成的影響, 其中一個方向是透過redirect, 另一個方向是proxy

利用AWS S3 Static Web的功能設定Redirect, 有以下的限制

1
2
3
4
5
6
7
8
9
10
11
12
[
{
"Condition": {
"KeyPrefixEquals": "api"
},
"Redirect": {
"HostName": "awesome.com",
"HttpRedirectCode": "307",
"Protocol": "https"
}
}
]

參考


Blog comments powered by Disqus