前几天遇到这样一个问题,生成gbk网页老显示乱码,网页文件本身是没问题的,使用编码什么的都指定了。不过出来的效果还是乱码,浏览器没有正确使用网页编码显示。后来找到了问题原因,是Apache环境默认使用UTF-8编码的缘故,关掉就好了。
修改Apache httpd.conf配置文件,将AddDefaultCharset设置为OFF,如下:
# # Specify a default charset for all content served; this enables # interpretation of all content as UTF-8 by default. To use the # default browser choice (ISO-8859-1), or to allow the META tags # in HTML content to override this choice, comment out this # directive: # AddDefaultCharset OFF
接着到SSH下/etc/init.d/httpd restart重启一下Apache即可生效。
除此之外,你还可以通过.htaccess指定网页使用编码。相关规则如下,需要使用其它编码就改一下。
AddDefaultCharset gbk AddCharset gbk .html AddType 'text/html; charset=gbk' html |
|