If what you're trying to do is allow users to bookmark/share pages, and you don't need it to be exactly the right URL, and you're not using hash anchors for anything else, then you can do this in two parts; you use the location.hash discussed above, and then implement a check on the home page, to look for a URL with a hash anchor in it, and redirect you to the subsequent result.
For instance:
1) User is on www.site.com/section/page/4
2) User does some action which changes the URL to www.site.com/#/section/page/6 (with the hash). Say you've loaded the correct content for page 6 into the page, so apart from the hash the user is not too disturbed.
3) User passes this URL on to someone else, or bookmarks it
4) Someone else, or the same user at a later date, goes to www.site.com/#/section/page/6
5) Code on www.site.com/ redirects the user to www.site.com/section/page/6, using something like this:
if (window.location.hash.length > 0) window.location = window.location.hash.substring(1);
Hope that makes sense! It's a useful approach for some situations.