I'm building a website and they want it to be an infinite scroll single page design, and to be as SEO friendly as possible.
Just to give you an example:
Here is an example URL structure:
com
com#something
com#something1
com#something2
But here is what the URL structure would look like if it were broken down into individual pages:
com
com/something
com/something1
com/something2
So, what am I supposed to do here?
I've previously used jQuery's pushState functionality. This allows my scrolling page to be segmented into various page-like sections, which can be identified in the SERPs with a unique URL and meta data.
I'm not able to use pushState here, because this is a really big page and I need any possible analytics that I can get.
Is there any workaround?