Here's a scenario that describes the problem:
User A has a browser with HTML5 state support, and sends this link to User B:
http://domain.tld/node
User B, who uses a browser without HTML 5 state support, navigates to another node, and sends the link back to User A:
http://domain.tld/node#!/another-node
But when User A clicks the link, the content for /node is shown instead of /another-node.
Querying Asual's jQuery $.address() plugin shows that it is interpreting the "hashbang address" as the hash value:
> $.address.value()
"/node#/another-node"
> $.address.path()
"/node"
> $.address.hash()
"/another-node"
(Curiously the "!" is dropped from the hashbang.)
Can this ambiguity be overcome with a change in my implementation?
I could disable support for the history API if a hashbang is found in the URI, but I'd rather not.