Your URL is not recognized by AWS:
...attachments%2F30%2Fsmall.png...
It should actually read:
...attachments/30/small.png...
Firefox will replace all URL-encoded entities (prior to the '?' query marker) with their corresponding ASCII representations before actually submitting the request (i.e. Firefox will replace %2F with / in the example above), whereas Safari might not. AWS will likely reply with HTTP 404 to Safari in such circumstances.
Make sure that your URL is well formed for AWS. Study carefully any differences between the URL that Firefox has in its address bar after the image is successfully retrieved, vs. the URL that Safari has in its address bar after the image fails to be retrieved.
Cheers, V.
