我对RSS提要有疑问

我对RSS提要有疑问,rss,Rss,我被困在这个问题上了。我的项目就是要这样做。本周你将为一家网络开发公司创建一个主题 * You can use http://www.1kbgrid.com/ for a base design. * Come up with a color scheme that will match this logo. * Decide what your top links should be. Create an RSS feed for these top pages. * Create a re

我被困在这个问题上了。我的项目就是要这样做。本周你将为一家网络开发公司创建一个主题

* You can use http://www.1kbgrid.com/ for a base design.
* Come up with a color scheme that will match this logo.
* Decide what your top links should be.  Create an RSS feed for these top pages.
* Create a report that states the scope of the project (why you are doing it), the top level pages, why you picked the color scheme,etc.
好的,我已经做了rss的事情,这就是它看起来的样子

<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0">
  <channel>
    <title>Web design software</title>
    <link></link>
    <description>Has different soft ware and prices.</description>
    <item>
      <title>Adobe Dreamweaver</title>
      <link>http://shopping.yahoo.com/search?p=web%20design</link>
      <description>This tells you how much it cost and what it is
      for.</description>
    </item>
    <item>
      <title>Frontpage 2003 upgrade</title>
      <link>
      http://www.softwaremedia.com/microsoft/frontpage/frontpage-
      2003-upgrade.html?ovchn=PGR&amp;ovcrn=39202323&amp;ovtac=CMP&amp;ovcpn=frontpage-2003---upgrade</link>
      <description>THis is to help build a better web
      site.</description>
    </item>
    <item>
      <title>WebPlus X4 Website Maker Mini Box</title>
      <link>
      http://accessories.us.dell.com/sna/productdetail.aspx?sku=A3310055&amp;cs=04&amp;c=us&amp;l=en&amp;dgc=SS&amp;cid=52102&amp;lid=1342490</link>
      <description>It helps you to make websites</description>
    </item>
  </channel>
</rss>

网页设计软件
有不同的软件和价格。
AdobeDreamweaver
http://shopping.yahoo.com/search?p=web%20design
这会告诉你它的价格和它是什么
对于
Frontpage 2003升级
http://www.softwaremedia.com/microsoft/frontpage/frontpage-
2003 upgrade.html?ovchn=PGR&;ovcrn=39202323&;ovtac=CMP&;ovcpn=frontpage-2003--升级
这是为了帮助建立一个更好的网络
地点。
WebPlus X4网站制造商迷你箱
http://accessories.us.dell.com/sna/productdetail.aspx?sku=A3310055&cs=04&;c=美国及欧洲;l=en&;dgc=SS&;cid=52102&;lid=1342490
它帮助你建立网站

我所坚持的是如何决定我的顶级链接应该是什么。为那些顶级页面创建一个RSS提要。好的,问题是我是否应该链接rss提要,或者如果可能的话。我完全不明白这个问题。感谢您准备好了这个。

您通常使用
标签从主站点链接到RSS文档。应该是这样的

<link rel="alternate" type="application/rss+xml" title="Top Web design software Feed" href="http://LINKTOMYRSSFILE" /> 

如果您的站点是动态站点,则需要将LINKTOMYRSSFILE替换为指向生成RSS的文件的链接。如果是静态文件,只需将此文件保存在服务器中并指向该文件即可

此外,主频道链接应指向显示所有这些内容的页面链接

编辑

首先,您应该使用W3C服务来验证提要。他们指出错误/最佳做法,并告诉您如何修复它们(使用错误旁边的帮助链接)

确保空的
标记包含指向站点的url

在评论中回答您的问题

缺少原子:与rel=“self”链接

根据RSS咨询委员会的 最佳实践概要,确定 提要中的提要URL使其 更便携、更独立、更安全 更容易缓存。基于这些原因,一个 提要应该包含一个atom:linkused 为此目的

通过:

您可以通过将
标记更改为

<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">

具有下列各项:

<atom:link href="http://LINKTOFEED" rel="self" type="application/rss+xml"/>


只需在页面中添加一个HTML标记即可

我还是不明白有没有人有网站或者任何我能读到的东西……你不明白哪一部分?如果你说得更具体一点,我可以帮你。是的,我去查看了我的rss文件,其中包含了这个丢失的atom:link with rel=“self”,第12行第2列:项应该包含一个guid元素。我仍然很困惑,她问我应该决定你的顶级链接应该是什么。创建和RSS饲料这些顶级页面。我做了什么我的RSS文件看起来像不是那些网页是那些考虑网页我放在我的RSS文件。我也不知道如何连接rss文件到我的网页,所以它就在那里。
<guid isPermaLink="false">LINKTOSOFTWARE</guid>