s3静态托管显示文件夹内容的列表,而不是index.html
我在s3上托管一个小页面:http://artisants.maison-travaux.fr.s3-website-eu-west-1.amazonaws.com/
有一个CNAME指向该存储桶的域名。 当我去index.html网址:http://artisants.maison-travaux.fr/index.html它的作品。
但是桶的根目录显示了桶内容的列表:http://artisants.maison-travaux.fr/
在存储桶配置中,我添加了index.html
作为索引文档。 但它并没有做到这一点。 我必须编辑一些重定向规则吗?
这对我来说很奇怪,它不是默认配置。
我尝试了一个重定向规则:
<RoutingRules>
<RoutingRule>
<Redirect>
<Protocol>http</Protocol>
<ReplaceKeyWith>index.html</ReplaceKeyWith>
<HttpRedirectCode>301</HttpRedirectCode>
</Redirect>
</RoutingRule>
</RoutingRules>
这似乎没有影响。
所以,这似乎不是真的可行。
负责管理DNS的人员必须在正确的端点上创建CNAME点。
链接地址: http://www.djcxy.com/p/70217.html上一篇: s3 static hosting display a list of the folder contents instead of index.html
下一篇: How do I escape a string inside JavaScript code inside an onClick handler?