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