.htaccess Set Default Charset Attribute
.htaccess Set Default Charset Attribute
Every piece of content on the web has a character set.
note
Most, if not all, of the content is UTF-8 Unicode.
Use AddDefaultCharset to serve all resources labeled as text/html or text/plain with the UTF-8 charset.
<IfModule mod_mime.c>
AddDefaultCharset utf-8
</IfModule>