I have an Apache server which is serving out static JSON files. The Content Type is correctly being represented in the header with an Content-Type: application/json
header.
How do I add the correct Charset to the header?
I have the following line in my httpd.conf
:
AddDefaultCharset utf-8
but even with this line, Apache does not set the charset in the header.
This is important, because my JSON files have some data in French, and the Accents are not being properly read in the JavaScript Code.
So how do I set proper Headers for JSON in Apache?