Many people have been saying, use pushState rather than hashbang.

What I don't understand is, how would you be search engine friendly without using hashbang?

Presumably your pushState content is generated by client side javascript.

Scenario is thusly:

I'm on site.com. My user clicks a link: href="site.com/blog"

pushState captures the click, updates the url, grabs a json file from somewhere, and creates the listing of blog posts in the content area.

With hashbangs, google knows to go to the escaped_fragment url to get their static content.

With pushState, google just sees nothing as it can't use the javascript to load the json and subsequently create the template.

The only way to do it I can see is to render the template on the server side, but that completely negates the benefits of pushing the application layer to the client.

So am I getting this right, pushState is not SE friendly for client side apps at all?

link|improve this question

feedback

1 Answer

Is pushState bad if you need search engines to read your content?

No, the talk about pushState is geared around accomplishing the same general process to hashbangs, but with better-looking URLs. Think about what really happens when you use hashbangs...

You say:

With hashbangs, google knows to go to the escaped_fragment url to get their static content.

So in other words,

  1. Google sees a link to site.com/#!/blog
  2. Google requests site.com/?_escaped_fragment_=/blog
  3. You return a snapshot of the content the user should see

As you can see, it already relies on the server. If you aren't serving a snapshot of the content from the server, then your site isn't getting indexed properly.

So how will Google see anything with pushState?

With pushState, google just sees nothing as it can't use the javascript to load the json and subsequently create the template.

Actually, Google will see whatever it can request at site.com/blog. A URL still points to a resource on the server, and clients still obey this contract. Of course, for modern clients, Javascript has opened up new possibilities for retrieving and interacting with content without a page refresh, but the contracts are the same.

So the intended elegance of pushState is that it serves the same content to all users, old and new, JS-capable and not, but the new users get an enhanced experience.

How do you get Google to see your content?

  1. The Facebook approach — serve the same content at the URL site.com/blog that your client app would transform into when you push /blog onto the state. (Facebook doesn't use pushState yet that I know of, but they do this with hashbangs)

  2. The Twitter approach — redirect all incoming URLs to the hashbang equivalent. In other words, a link to "/blog" pushes /blog onto the state. But if it's requested directly, the browser ends up at #!/blog. (For Googlebot, this would then route to _escaped_fragment_ as you want. For other clients, you could pushState back to the pretty URL).

So do you lose the _escaped_fragment_ capability with pushState?

In a couple different comments, you said

escaped fragment is completely different. You can serve pure unthemed content, cached content, and not be put under the load that normal pages are.

The ideal solution is for google to either do javascript sites or implement some way of knowing that there's an escaped fragment url even for pushstate sites (robots.txt?).

The benefits you mentioned are not isolated to _escaped_fragment_. That it does the rewriting for you and uses a specially-named GET param is really an implementation detail. There is nothing really special about it that you couldn't do with standard URLs — in other words, rewrite /blog to /?content=/blog on your own using mod_rewrite or your server's equivalent.

What if you don't serve server-side content at all?

If you can't rewrite URLs and serve some kind of content at /blog (or whatever state you pushed into the browser), then your server is really no longer abiding by the HTTP contract.

This is important because a page reload (for whatever reason) will pull content at this URL. (See https://wiki.mozilla.org/Firefox_3.6/PushState_Security_Review — "view-source and reload will both fetch the content at the new URI if one was pushed.")

It's not that drawing user interfaces once on the client-side and loading content via JS APIs is a bad goal, its just that it isn't really accounted for with HTTP and URLs and it's basically not backward-compatible.

At the moment, this is the exact thing that hashbangs are intended for — to represent distinct page states that are navigated on the client and not on the server. A reload, for example, will load the same resource which can then read, parse, and process the hashed value.

It just happens to be that they have also been used (notably by Facebook and Twitter) to change the history to a server-side location without a page refresh. It is in those use cases that people are recommending abandoning hashbangs for pushState.

If you render all content client-side, you should think of pushState as part of a more convenient history API, and not a way out of using hashbangs.

link|improve this answer
The content does exist, normal users would see it at site.com/blog, but you need to do javascript work on it. – Harry May 31 '11 at 23:11
@Harry - Did you read the rest of my answer? A URL is a URL - meaning a resource locator. Does the server believe that content exists at site.com/blog? If not, then it doesn't exist to Search Engines. The purpose of pushState is not to work around that. It's for convenience. Hashbangs don't fix this either, and _escaped_fragment_ is a complicated workaround that still relies on the server having a snapshot of the JS generated content (seen by normal users, as you put it). pushState actually simplifies all of this. – NickC May 31 '11 at 23:13
escaped fragment is completely different. You can serve pure unthemed content, cached content, and not be put under the load that normal pages are. Ultimately it shouldn't matter whether or not the server knows the page is there, the audience for the site is the client, the client sees the page. In fact for many apps there is NO server. I do use a server but prefer to do as much as possible on the client. :S just wish google would hurry up and evaluate JS already. – Harry May 31 '11 at 23:23
@Harry - Until URLs are designed to serve client side content, they still refer to a resource on the server, and clients will treat them that way, including bots. It doesn't mean your goal to do as much as possible on the client is an invalid one, but for the time being it might have to be accomplished using (ugly) hashbangs. I've updated my answer for your use case. – NickC Jun 1 '11 at 4:51
Hi, I want to address: The benefits you mentioned are not isolated to _escaped_fragment_. That it does the rewriting for you and uses a specially-named GET param is really an implementation detail. There is nothing really special about it that you couldn't do with standard URLs — in other words, rewrite /blog to /?content=/blog on your own using mod_rewrite or your server's equivalent. I'm not sure how this is possible. The idea is that you would server the same 'empty' page on all urls, but use javascript routing to figure out where you are and update the page accordingly – Harry Jun 1 '11 at 23:34
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.