在 Google 云存储中替代 `x-amz-website-redirect-location`

Alternative to `x-amz-website-redirect-location` in Google Cloud Storage

我想在 Google Cloud Storage 中托管一个网站,其中根目录指向某个文件夹(基本上它重定向到 /en/ 文件夹,默认语言)。

我可以使用 x-amz-website-redirect-location header 在 Amazon S3 中完成此操作。但是根据 the documentation,header 在 Google Cloud Storage 中不可用。

有没有一种干净的方法来做到这一点?或者我应该在根目录中添加一个带有 meta refresh 元素的 index.html 文件吗?

正如@jterrace 所评论的,现在无法使用 header 进行重定向。解决方案是包含一个元刷新元素:

<html>
    <head>
        <meta http-equiv="refresh" content="0; url=/en/">
    </head>
</html>