侧边栏壁纸
  • 累计撰写 225 篇文章
  • 累计创建 275 个标签
  • 累计收到 0 条评论

目 录CONTENT

文章目录

Apache 引导页中文乱码处理方法

DGF
DGF
2017-05-09 / 0 评论 / 0 点赞 / 21 阅读 / 0 字

相信好多人碰到过如下图所示问题,进入本地服务的引导页时出现过中文乱码,可能都知道这跟字符编码有关系,但是奈何找不到在哪里设置,特别对一些初学者而言更是无从下手。我也遇到过这个问题,特此记录下来。

处理方法:

  1. 在你Apache的安装目录中找到httpd.conf这个配置文件
  2. 修改配置文件httpd.conf
  3. 将以下
#Fancy directory listings
#Include /Applications/MAMP/conf/apache/extra/httpd-autoindex.conf
改为
#Fancy directory listings
Include /Applications/MAMP/conf/apache/extra/httpd-autoindex.conf(去掉前面的#)
IndexOptions Charset=utf-8(增加)

重启Apache即可

post4-1.png

0

评论区