如果我请求一个像我的 Apache-Error Pages 显示的页面http://url/T%C3%A4st (http://url/Täst)
,并且编码错误,例如:
该服务器上未找到所请求的 URL /Täst。
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL /Täst was not found on this server.</p>
<hr>
<address>Apache/2.2.16 (Debian) Server at example.com Port 80</address>
</body></html>
如何修复此问题?
答案1
听起来您的错误页面需要指定字符集。您可以更改 Apache httpd.conf 文件:
http://rackerhacker.com/2007/11/15/change-the-default-apache-character-set/
或者,您可以将此标题添加到错误页面:
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
如果您不确定使用什么字符集,请尝试 utf-8 或 ISO-8859-1。