if I allow partner sites to republish my RSS feed, will that boost my SEO ranking?

邮差的信 提交于 2019-11-30 16:45:12
  1. Search engines will never see the javascript implementation. I like this option because you need not worry about anything much.
  2. iframes are no good.
  3. Serverside is a good option, though it requires the most work.
  4. RSS is a pretty standard web format. Syndication happens all the time. The big search engines are smart enough to point to the original source.
  5. It's not going to help you THAT much in SEO if at all. But it could bring new traffic by reaching a broader audience.
  6. This isn't really a programming related question.

Speaking about the pagerank algorithm yes any links to your site from another site are helpful. Meaning if you have links from your client's site to yours it will boost your pagerank.

In terms of what crawlers can see they generally don't fully render JavaScript or iframed content so you should make it a server-side script.

Duplicate content isn't great on the web generally because if they have a better rank then you they might actually appear before you but generally it should be okay especially if they are only posting title/description.

You should give them a simple script tag to paste onto their page, like this:

<script src="MattDiPasquale.com/theScript.aspx"></script>

And then emit whatever javascript you want. That javascript will write out your content.

If your content is links to your pages, yes, it will increase your PageRank. The old rule that search engines ignore javascript-generated content is no longer true.

You emit RSS links instead if you want. That's the beauty of this approach, you have complete control. Also you know which sites are getting how much traffic, which often turns out to be useful.

One downside is that a massive site will put stress on your server. Also, a bug in your code will affect everyone using it, so there's a little extra pressure there.

I finally solved this using a technique called JSONP (JSON with padding).

http://www.custudentloans.org/javascripts/cusl-page.js

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!