这个问题是对此问题的后续跟进: get google chrome to view an rss feed
我从这个页面复制了源代码(希望这对网站所有者来说没问题):
http://www.petefreitag.com/rss/。
我从所有引号中逃脱并制作了一个php文件。该文件如下所示:
<?php
header('Content-Type: application/rss+xml');
echo "<?xml version=\"1.0\" ?>
<?xml-stylesheet type=\"text/css\" href=\"http://www.petefreitag.com/rss/simple_style.css\" ?>
<rss version=\"2.0\">
<channel>
<title>Pete Freitag's Homepage</title>
<link>http://www.petefreitag.com/</link>
<description>Covering ColdFusion, Java, Web Development, and other topics</description>
<language>en-us</language>
<lastBuildDate>Fri, 23 Mar 2012 18:57:00 GMT</lastBuildDate>
<ttl>45</ttl>
<item>
REST OF THE SOURCE CODE
</rss>
";
?>
在这里你可以看到结果: http://web.student.tuwien.ac.at/~e0250890/rsstest/test.php
但是,在http://www.petefreitag.com/rss/ chrome上将该页面视为rss feed,在我的示例中,它仅显示了源代码。
有什么区别,如何强制Chrome以rss Feed的形式查看页面?
答案 0 :(得分:4)
尝试将标题更改为application/xml
通过更改标题,这对我有用:
<?php
header('Content-Type: application/xml');
echo file_get_contents('http://web.student.tuwien.ac.at/~e0250890/rsstest/test.php');
?>
Mozilla接受一系列标题
text/xml
,application/xml
,application/rss+xml
,application/atom+xml
但Chrome似乎只接受text/xml
或application/xml
不是100%肯定为什么,也许你应该用谷歌来接受它; p
答案 1 :(得分:-4)
添加doctype。
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">