我在google-cloud-storage存储桶上有一个静态网站。
我使用以下方法将网站同步到存储桶:
args: ["-m", "-h", "Content-Encoding:gzip", "rsync", "-c", "-r", "./folder", "gs://mysite.com"]
我已在我的云存储桶中设置了网站配置:
/index.html
结果是:
mysite.com/category/index.html
然后我要删除index.html
,因此除了第二行中的args
之外,我还尝试了以下操作:
args: ["-h", "Content-Type:text/html", "cp", "./folder/*/index.html", "gs://mysite.com/*"]
但是第二个参数不起作用。
如何编写第二个args
,以便从index.html
中的URL中删除mysite.com/category/index.html
?