我的金字塔应用程序允许用户从 www.domain.com 在 amazon s3 存储桶(称为“testbucket”)中创建新的 html 页面。现在,当页面创建时,用户在https://s3.amazonaws.com/testbucket/ (一些uuid)被重定向到它。我想要它,以便将它们重定向到存储该 html 的 www.subdomain.domain.com/(someuuid) 。现在这条线在我看来是可调用的(views.py)
return HTTPFound(location="https://s3.amazonaws.com/testbucket/%(uuid)s" % {'uuid':uuid})
我读过(http://carltonbale.com/how-to-alias-a-domain-name-or-sub-domain-to-amazon-s3/),为了做到这一点,我需要在我的amazon s3 帐户名为 subdomain.domain.com,然后将其命名为 s3.amazon.com。(额外的 . 是什么?)。那么我应该在我的返回 HTTPFound 调用中添加什么?应该是:
return HTTPFound(location="https://s3.amazonaws.com/subdomain.domain.com/%(uuid)s" % {'uuid':uuid})
这对我来说没有任何意义。应该是什么?