RSS 不在 IE 中列出,但在 FF 和其他浏览器中工作

发布于 2024-12-12 05:58:42 字数 223 浏览 0 评论 0原文

我有一个 RSS 提要,由于某种原因,我在 IE 上看不到任何文本,但在其他浏览器中它可以正常工作。

RSS 开头为:

<?xml version="1.0"?>'
<rss version="2.0">'

可以是 rss 或 xml 版本吗?或者其他什么我真的不知道 IE 识别该页面是 RSS 提要,但不显示任何文本。

I have a RSS feed, for some reason I don't see any text on IE but in other browsers it's working.

The rss is starting with :

<?xml version="1.0"?>'
<rss version="2.0">'

Can it be the rss or xml version? or something else, I really don't know,
IE identifies that the page is a RSS feed, but doesn't show any text.

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

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

发布评论

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

评论(1

狠疯拽 2024-12-19 05:58:42

我认为标题应该是这样的,假设您的提要是 UTF-8 编码的:

<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">

您可以在此处验证您的提要: http://validator.w3.org/feed/#validate_by_uri。您的 Feed 有两个错误。也许修复它们会有所帮助。

还有一点,你发送了正确的 Content-Type 标头吗?在 PHP 中你可以这样做:

header("Content-Type: application/rss+xml"); 

I think the header should be like this, assuming your feed is UTF-8 encoded:

<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">

You can validate your feed over here: http://validator.w3.org/feed/#validate_by_uri. For your feed there are two errors. Maybe fixing them will help.

Another point, do you send the correct Content-Type header? In PHP you can do that like this:

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