我在s3上放了很多文件并尝试在我的s3存储桶上配置CORS来访问它,但每次它都显示错误No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://mylink.com' is therefore not allowed access.
我尝试了很多设置,但无法使用正确的xml策略集。
这是当前的一个:
<?xml version="1.0" encoding="UTF-8"?>
<CORSConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/">
<CORSRule>
<AllowedOrigin>http://mylink.com</AllowedOrigin>
<AllowedMethod>GET</AllowedMethod>
<MaxAgeSeconds>3000</MaxAgeSeconds>
<AllowedHeader>Authorization</AllowedHeader>
</CORSRule>
</CORSConfiguration>
任何帮助将不胜感激..