After seeing another post earlier today on the HTML5 History API and reading the tutorial at Mozilla, I've been able to implement a basic working demo for using this API to allow URL "rewriting" without reloading the page and without using a hash.

My question is: Let's say you have a user who comes to a page, clicks on one of these links that uses the History API to write the new URL. Then the user bookmarks the page. Now I'm assuming it will now bookmark the rewritten URL. So when the user comes back in a couple of days or something and tries to go to the bookmarked page, won't it return a 404? And so how can you implement a way for it to resolve somehow?

This is assuming that the URL I rewrite points to a non-existent location.

link|improve this question

61% accept rate
Why would you push a non-existent url into the browser's history? Even the page you linked to notes: the browser won't attempt to load this URL after a call to pushState(), but it might attempt to load the URL later, for instance after the user restarts her browser, or as you point out, if the user bookmarks the url. – Crescent Fresh Feb 13 '11 at 5:18
For the same reason hash locations are used – jerluc Feb 13 '11 at 5:21
The hash is used (often) to capture state, while a URL (as its definition suggests) is for identifying a resource. So again, why would you push a non-existent url into the browser's history? – Crescent Fresh Mar 4 '11 at 14:19
feedback

2 Answers

This should be done by server side scripts. The server should parse URL and make the page.

link|improve this answer
feedback

I just encountered this issue today and wrote an entry about it on my blog: When using HTML5 pushstate if a user copies or bookmarks a deep link and visits it again, then that will be a direct server hit which will 404.

Even a js pushstate library won't help you here as this is a direct server call being requested before the page and any JS even loads.

The easiest solution is to add a rewrite rule to your Nginx or Apache server to internally rewrite all calls to the same index.html page. The browser thinks it's being served a unique page when it's actually the same page:

Apache (in your vhost if you're using one):

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.html$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.html [L]
 </IfModule>

Nginx

rewrite ^(.+)$ /index.html last;

You would still, of course, add some JS logic to display the correct content. In my case I'm using Backbone routes which handles this easily.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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