For yslow page speed I want to remove my meta tag and put my encoding in the htaccess. These are all the ways I have read to do it. Which is the preferred way? Also is the language setting a good idea too? Thanks!
1) From html5 boilerplate
AddDefaultCharset utf-8
AddCharset utf-8 .html .css .js
DefaultLanguage en-US
vs
2) from askappache
<filesMatch "\.(html|css|js)$">
AddDefaultCharset UTF-8
DefaultLanguage en-US
</filesMatch>
vs
3) from askappache - I suspect this is all thats needed. But untested.
AddCharset UTF-8 .html .css .js
DefaultLanguage en-US