俄语字符不会出现在 Mozilla 中

发布于 2024-12-28 13:50:35 字数 257 浏览 0 评论 0原文

请使用 Mozilla 查看此 URL - http://smartplast.com/soon/

正如您所看到的,字符显示错误:

在此处输入图像描述

我不明白问题出在哪里,导致所有其他问题浏览器内容显示正确。

Could some on please check out this URL with Mozilla - http://smartplast.com/soon/ .

As you can see characters is displaying wrong :

enter image description here

I don't understand where is problem, cause in all other browsers content is displaying right.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

最美不过初阳 2025-01-04 13:50:35

您的服务器响应 HTTP 标头的编码为“windows-1251”,但页面本身的编码为“UTF-8”。

这是您的标头:

HTTP/1.1 200 OK
Server: nginx/0.8.53
Date: Mon, 23 Jan 2012 10:11:44 GMT
Content-Type: text/html; charset=windows-1251
Connection: keep-alive
Last-Modified: Mon, 23 Jan 2012 10:03:18 GMT
ETag: "33c0537-2e1-4b72f23c06580"
Accept-Ranges: bytes
Content-Length: 737 

您可以在 HTTP 响应标头中设置正确的编码,或更改页面上的编码。

Your server response HTTP header has encoding "windows-1251", but the page itself is encoded in "UTF-8".

Here is your header:

HTTP/1.1 200 OK
Server: nginx/0.8.53
Date: Mon, 23 Jan 2012 10:11:44 GMT
Content-Type: text/html; charset=windows-1251
Connection: keep-alive
Last-Modified: Mon, 23 Jan 2012 10:03:18 GMT
ETag: "33c0537-2e1-4b72f23c06580"
Accept-Ranges: bytes
Content-Length: 737 

You can either set correct encoding in HTTP response header, or change encoding on the page.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文