I have some images in my content whose url look like
These are image files, with no extension.
They render as images on my webhost.
I moved to a different server, and currently when the same url is opened, the browser offers the image as text file for download.
I believe the application/mime type is not being set to image by the new apache server.
i tried adding a htaccess snippet as
<Directory "sites/default/cdn/*">
Header append Vary: Accept-Encoding
AddType image/png .png
</Directory>
And also tried several other combinations like giving a specific directory instead of a *, etc. But no luck so far.
Any pointers?