Mobile app version of vmapp.org
Login or Join
Deb1703797

: Load Wikipedia sourced biographies via Ajax or render it with the rest of the page as part of the initial request? Apparently Google Search ranks pages with unique content higher than pages

@Deb1703797

Posted in: #Ajax #GoogleSearch #Seo

Apparently Google Search ranks pages with unique content higher than pages that have content that is originally from somewhere else (e.g. 'Wikipedia').

In a web site I am building, I show some specific information about different influential people. Each person's page also includes an abstract about that person which is sourced from Wikipedia, as well as a read more link to the original Wikipedia article.

In order to improve ranking of these pages, is it better to render this information inline so it is indexible by Google, or is it better to load it via Ajax, hence not visible to Google bots?

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Deb1703797

2 Comments

Sorted by latest first Latest Oldest Best

 

@Speyer207

There are two options to use content from another site on your site:


Add a rel=canonical tag to the content with the link being the one to the original content if majority of the page's content is from another source.
Add <meta name="original-source content="link to original site" /> if only parts of the content is taken from a source.


As there is no real way to prevent parts of a page from being indexed, the ways to achieve it gets limited to loading the content in an external javascript file or external iFrame and adding a rule in the robots.txt to prevent it from getting indexed. Inline javascript won't be safe as Google has this habit of looking into javascript files, sometimes.

10% popularity Vote Up Vote Down


 

@Eichhorn148

Some amount of duplicate content is fine. If the text is only 10% of the page, I wouldn't worry about any duplicate content penalties. If the text is the majority of the page, then Google will likely filter that page if you don't load the syndicated text with AJAX. See What is duplicate content and how can I avoid being penalized for it on my site?

When you use content from Wikipedia, make sure you comply with their license. Properly licensed content is much less likely to be penalized by Google than "scraped" or "stolen" content. See Can Wikipedia content be used on a custom wiki on a site?

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme