Mobile app version of vmapp.org
Login or Join
Courtney195

: Effects of replacing prerender.io with inhouse prerendering I have a website built using MEAN(Mongo Express Angular Nodejs) stack. I was using the prerender.io to render the pages for the bots.

@Courtney195

Posted in: #GoogleSearchConsole #NodeJs #Seo

I have a website built using MEAN(Mongo Express Angular Nodejs) stack. I was using the prerender.io to render the pages for the bots. The prerender server was running on the AWS EC2, however there were problems with the prerender.io server every week or so, such that the server would go down for some unknown reason. And also it was adding up some cost to my project. To get rid of this annoying problem I decided to write my own mini-prerender middleware in the express. In the middleware, I interecept the traffic from the bots, build the html for the requested url and serve the static html to the bots with

response.send("<html>Well structured content with all title/head/meta tags</html>").


This html is not the exact replication of my website, but has enough content and links to the other related pages.

After this change, my problem with the prerender server has been fixed(obviously). If I google search the recently added pages in my website, I do see them in the result. However, the users visiting my website have dropped by more than 50%, after this change. When I visit Google's Webmaster tools all seems fine except few(around 180) soft-404 errors.

I wonder what could have gone wrong. Is having such middleware to send html to bots a bad idea ?

10% popularity Vote Up Vote Down


Login to follow query

More posts by @Courtney195

0 Comments

Sorted by latest first Latest Oldest Best

Back to top | Use Dark Theme