In my single-page backbone app, I'm having trouble getting my longer urls to route properly in IE. Any urls that are nested more than one level, don't receive the proper hash fallbak when loading them directly.
top-level urls work fine...
when I load: domain.com/resource
in IE I get: domain.com/#resource (as expected)
navigating (in-app) works fine...
when I click on a link to: domain.com/resource/12345
IE sends me to: domain.com/#resource/12345 (as expected)
but accessing deeper urls directly breaks the page
when I load: domain.com/resource/12345
in IE I get: domain.com/resource/12345 !! this is incorrect, and the page doesn't load
UPDATE:
This is IE9