Home > Backend Development > PHP Tutorial > 怎么解决Apache2乱码问题

怎么解决Apache2乱码问题

PHPz
Release: 2020-09-05 09:17:05
Original
1884 people have browsed it

解决方法:1、在“httpd.conf”中,找到包含“AddLanguage”或“AddCharset”的行,在其前面增加一行代码“AddDefaultCharset GB2312”;2、在网页的head中统一使用“”设置编码。

怎么解决Apache2乱码问题

怎么解决Apache2乱码问题?

在Apache的配置文件httpd.conf中

1)在配置文件中找包含“AddLanguage”或“AddCharset”的行,在这些行最前面增加一行:     

AddDefaultCharset GB2312 

2)养成良好的习惯,在每个网页的里加入这行: 

 

一般的中文版网页编辑工具(例如FrontPage、Dreamweaver等)都会自动加上这行。 

PS:刚刚安装好的Apache2.2中是没有“AddLanguage”或“AddCharset”的,直接在httpd.conf文件末尾添加就ok了

更多相关知识,请访问PHP中文网

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template