I don't remember how many times I've solved this problem, but I forget it every time.
Server side:
======
Modify httpd.conf (place in Redhat is/etc/httpd/conf/)
Find:
Adddefaultcharset iso-8859-1
Change into:
#AddDefaultCharset iso-8859-1
Adddefaultcharset off
This way, the default language of the server is turned off so that the language of the Web page is determined only by the language set in the header of the HTML file.
Someone used it directly.
Adddefaultcharset GB2312
However, this is not recommended.
Restart Apache,
/etc/init.d/httpd Restart
Client:
=====
In the Chinese Web page please add in the label as follows:
GB2312 (Simplified Chinese):
<meta http-equiv= "Content-type" content= "text/html; charset=gb2312″/>
BIG5 (Traditional Chinese):
<meta http-equiv= "Content-type" content= "text/html; charset=Big5″/>
UTF-8: (note is UTF-8, not UTF8)
<meta http-equiv= "Content-type" content= "text/html; charset=utf-8″/>
If it is still not normal, please clear the browser cache try.