Apache服务器打开网页是乱码解决方案
当 Apache 服务器显示乱码时,可以使用两种方法解决:
1. 服务器端
可以在 Apache 的配置文件中添加以下内容来设置默认编码为UTF-8:
AddDefaultCharset utf-8
修改完成后,重启 Apache 服务器即可。
Apache 配置文件
在 Ubuntu 20.04.6 LTS 中,Apache 配置文件位置为:
/etc/apache2/apache2.conf
2. HTML端
可以在网页的头部信息中添加以下内容来设置编码为 UTF-8:
<head>
<!-- ...... -->
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- ...... -->
</head>