Even if it was passed it would make no sense. When you write http://example.site.com/something#blahblahtext the blahblahtext refers to a ID of a element on a page and will focus the screen on that element. Obviously, you can't have two sharp signs in there.
@shadowhand I don't think it's impossible. Facebook uses this method to achieve their photo gallery (instead of reloading the page for each URL, it switches out the content and changes the window.location.hash property through Javascript). Also, all of the documentation I found while researching this suggests I should be able to just comment out the # with \#, but I can't make that work for my routes.
@Akki That would only jump if there was an element on the page with the same ID as the #. Again, this is how Facebook achieves their gallery browsing.
@DrPheltRight I think you're right. I was playing with this idea, but didn't want to do it this way. I'll have to AJAX load the content based on the window.location.hash, it seems.
Thanks guys for all your help! I've been lurking here for a while and this was the first time I've asked about anything. Great community!