Browser access to Google-Account-Protected related

2019-06-07 04:52发布

问题:

Is there a way to access related web pages hosted on Google storage, linked by relative links, with a browser via https://storage.cloud.google.com/yourbucket/yourwebpage.html ? Or what are the best workarounds?

回答1:

Try adding a <base> tag to your html files:

<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