Automatically add utf-8 charset to files - In order to avoid encoding problems, you can force a specific encoding directly on your .htaccess file. That way, you will ensure that your HTML documents will always render correctly, even if you forget to add a directive in your HTML pages.
#Begin Auto UTF-8 Charset <FilesMatch "\.(htm|html|css|js)$"> AddDefaultCharset UTF-8 </FilesMatch> # // --> End