I have a simple browser based game. The gameplay is super simple - you just click a few times and get a result.
After getting the result, many users may want to have another try (because there are some random events during the clicking).
I have two ways to design the page:
- put a
<a>link and let it link to the page itself. When a user clicks the link, the whole page just reloads. - develop some JavaScript code to make the game replayable without reloading the whole game.
Which one is better for SEO? #1 would be much easier for me to develop so if the two ways are almost the same, I'd surely choose #1.
Time on page does not affect SEO at all- I read a lot of posts saying that visit duration is a very important role. Is there any other better metrics for Google to determine which page is better? – AGamePlayer Sep 26 '21 at 11:39