简体   繁体   中英

Reload same page several times in Blogger/Blogspot will reduce bounce rate?

I'm trying to make a simple pagination in Blogger with Javascript. The idea is hiding the second paragraph, and show it when we click a button (and hide the first paragraph when we do so). The page will also be reloaded everytime the button clicked.

So, if my visitor reload the same page for several times, will it improve the bounce rate? Since it's the same URL.

It's a bit different with other self-hosted blog because they have different URL for each page. Something like:

domain.com/the-title?page=2
domain.com/the-title?page=3
domain.com/the-title?page=4

...etc

Also, will it affect the SEO? Is everything I hid in second paragraph will be invisible in Google search result?

The answer is NO. Let me explain the reasons why:

1.The bounce rate is increased when a user visits your page and leaves without interacting with your site / visiting another page.

2.Refreshing the page does not start a new session/pageview. No matter how many times they visit your site they will re-open the exact same session for 30mins.

3.Javascript refresh or meta refresh does not count as user interaction. You may also want to read more about Google and Javascripts. Google can read your content even if you use javascript or refresh for Dynamic content. ( http://searchengineland.com/tested-googlebot-crawls-javascript-heres-learned-220157 )

4.Hiding any texts from the user is never a good idea. You may apply it in times that you need specific KPIs for clicks of buttons or cases like that but... can't you just use heatmaps or even better seperate content? Anyway, if you use it on a high percent of your content you might have Cloaking problems.( https://support.google.com/webmasters/answer/66355 )

So it will not affect your bounce rate. You might get cloaking warning if you apply this on the majority of your website. It might also be considered a problematic user experience and lower your techincal seo scores (page load times etc.). As you can see you might only get problems by using such methods. I would suggest you to not proceed with the idea.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM