如何访问谷歌存储桶上的html文件,而不指向具有html扩展名的文件

时间:2017-01-25 12:11:26

标签: google-cloud-storage

我想让网站用户在请求www.website.com/userProfile(没有.html)时加载userProfile.html。 在文档中没有任何相关内容。

1 个答案:

答案 0 :(得分:3)

您可以提供不带.html后缀的HTML内容。尽管设置内容类型很重要。例如,使用gsutil:

gsutil -h "Content-Type:text/html" cp /path/users/userProfile \
    gs://www.website.com/userProfile