skip to Main Content

I want to understand why client side rendering makes it bad for SEO? Are there any articles about this? Isn’t the data rendering already from the server and it’s just a matter of making it look like anything we want in JavaScript, how will this affect SEO?

Thank you.

2

Answers


  1. The simple answer is that when you render the site with JavaScript you require JavaScript to see the page, right? Well, Google bots don’t run JavaScript so in the best case they’ll just see plain text.

    Nothing wrong with plain text though. The most important thing is that the same info is on the page even without JavaScript.

    Can you be more specific on how you planning to implement client side rendering?

    Login or Signup to reply.
  2. Why would you like to use SEO for a SharePoint site?
    SharePoint has already a very good native search engine.

    Please take in count that using sharepoint as a public website is no longer recommended, furthermore Microsoft and any SP professional will discourage you from using it in that way. Microsoft has already dropped the public website feature from SharePoint Online (Office 365), and as you may know the current Microsoft strategy is “Cloud first, Mobile first” so you can expect that in the middle term most of the ways and patterns will be equivalent in SP Online and SP on-premise. So I’m not saying that you can’t do this with a SharePoint server exposed to internet, however you shouldn’t continue doing it, considering that you can use web services to call/get sharepoint content from any other web platform in case you need to publish some sharepoint content in a public website.

    http://support.microsoft.com/en-us/kb/3027254/en-us

    https://www.linkedin.com/pulse/sharepoint-public-website-platform-any-more-marwan-tarek

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search