| 
 | 
 
Apache显示中文网页为乱码,该做的都做了,httpd.conf改了,浏览器cookie删了,apache重起了,还是乱码,请教 
httpd.conf的配置如下: 
 
AddDefaultCharset GB2312 
 
# 
# Commonly used filename extensions to character sets. You probably 
# want to avoid clashes with the language extensions, unless you 
# are good at carefully testing your setup after each change. 
# See ftp://ftp.isi.edu/in-notes/iana/assignments/character-sets for 
# the official list of charset names and their respective RFCs 
# 
AddCharset GB2312      .gb2312 .gb 
AddCharset ISO-8859-1  .iso8859-1  .latin1 
AddCharset ISO-8859-2  .iso8859-2  .latin2 .cen 
AddCharset ISO-8859-3  .iso8859-3  .latin3 
AddCharset ISO-8859-4  .iso8859-4  .latin4 
AddCharset ISO-8859-5  .iso8859-5  .latin5 .cyr .iso-ru 
AddCharset ISO-8859-6  .iso8859-6  .latin6 .arb 
AddCharset ISO-8859-7  .iso8859-7  .latin7 .grk 
AddCharset ISO-8859-8  .iso8859-8  .latin8 .heb 
AddCharset ISO-8859-9  .iso8859-9  .latin9 .trk 
AddCharset ISO-2022-JP .iso2022-jp .jis 
AddCharset ISO-2022-KR .iso2022-kr .kis 
AddCharset ISO-2022-CN .iso2022-cn .cis 
AddCharset Big5        .Big5       .big5 
# For russian, more than one charset is used (depends on client, mostly): 
AddCharset WINDOWS-1251 .cp-1251   .win-1251 
AddCharset CP866       .cp866 
AddCharset KOI8-r      .koi8-r .koi8-ru 
AddCharset KOI8-ru     .koi8-uk .ua 
AddCharset ISO-10646-UCS-2 .ucs2 
AddCharset ISO-10646-UCS-4 .ucs4 
AddCharset UTF-8       .utf8 
 
# The set below does not map to a specific (iso) standard 
# but works on a fairly wide range of browsers. Note that 
# capitalization actually matters (it should not, but it 
# does for some browsers). 
# 
# See ftp://ftp.isi.edu/in-notes/iana/assignments/character-sets 
# for a list of sorts. But browsers support few. 
# 
AddCharset utf-7       .utf7 
AddCharset utf-8       .utf8 
AddCharset big5        .big5 .b5 
AddCharset EUC-TW      .euc-tw 
AddCharset EUC-JP      .euc-jp 
AddCharset EUC-KR      .euc-kr 
AddCharset shift_jis   .sjis |   
 
 
 
 |