1

有没有办法通过浏览器通过https://storage.cloud.google.com/yourbucket/yourwebpage.html访问托管在 Google 存储上的相关网页,通过相关链接链接?或者最好的解决方法是什么?

4

1 回答 1

2

尝试<base>在您的 html 文件中添加标签:

<head>
<base href="http://storage.googleapis.com/pub/" target="_blank">
</head>

<body>
  <a href="gsutil.tar.gz">Download gsutil</a>
</body>

http://www.w3schools.com/tags/tag_base.asp

于 2013-05-19T00:00:18.577 回答