将图像重写到 S3
我正在寻找一种方法来重写从亚马逊 S3 提供的图像,
我们无法重写基于它们的文件夹,因为我们有以下模式
/product/name -> for product url
/product/name.jpg -> product image
/store/name -> store url
/store/name.jpg ->存储图像
重写图像的最佳方法是什么
/product/name.jpg -> http://amazonbucket/product/name.jpg
谢谢
I'm looking for a way to rewrite images to be served from amazon S3
we cannot rewrite them based folder because we have following patter
/product/name -> for product url
/product/name.jpg -> product image
/store/name -> store url
/store/name.jpg -> store image
what would be the best way to rewrite images
/product/name.jpg -> http://amazonbucket/product/name.jpg
thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以执行的操作之一是将 CNAME 分配给您的 Amazon S3 域。在这种情况下,您必须将存储桶命名为 images.yourdomain.com 之类的名称,并且您将能够从 http://images.yourdomain.com/product/name.jpg
One of the things you can do is to assign a CNAME to your Amazon S3 domain. In this case you will have to name your bucket something like images.yourdomain.com and you will be able to serve your images from http://images.yourdomain.com/product/name.jpg