RSS订阅是站点用来和其他站点之间共享内容的一种简易方式,即Really Simple Syndication(简易信息聚合)。
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>我的Blog</title>
<description>与我自己的技术Blog相关联</description>
<link>http://counter.csdn.net/pv.aspx?id=72</link>
<dc:language>af</dc:language>
<item>
<title><!-- 项标题 --></title>
<link><!-- 项 URL --></link>
<description><!-- 简要描述 --></description>
<!-- 可选的/可扩展的元素 -->
</item>
<item>
<!-- 可多个<item>项目-->
</item>
</channel>
在 head 中加入 link[type=”application/rss+xml”] ,href 指向feed.xml
<link rel="alternate" type="application/rss+xml" title="bqxu's Tech" href="http://bqxu.me/feed.xml">