My STATIC_URL is configured to point to the URL of my S3 bucket and the static directory within it.
STATIC_URL = 'https://s3.amazonaws.com/XXXXXXX/static/'
When I try to load the stylesheets in my template using:
<link href="{{ STATIC_URL }}css/bootstrap-responsive.css" rel="stylesheet">
The stylesheet doesn't seem to load, even though the source code displays the correct link that can be clicked and downloaded. The permissions are also set to allow viewing by anyone in the world. Even after a hard refresh in Chrome, the stylesheet still won't load.
Can someone explain why the stylesheet is not loading despite having the correct URL?
Thank you for your assistance-