When setting up routes on backbone.js, it seems the framework automatically preprends # to it. I.e.

routes : { "example/:id" : "handler" },

will match a link of www.example.com/#example/123

Is it possible to add the hashtag later on in the url? I'm essentially trying to build my app as www.example.com/text/#example/123 (notice the text/ before the #).

Is there anyway of doing this without altering the backbone.js framework itself?

link|improve this question

75% accept rate
feedback

2 Answers

up vote 7 down vote accepted

Sounds like you should initalize Backbone.history with the root option set: http://documentcloud.github.com/backbone/#History-start

link|improve this answer
Ah, didn't realize what pushState was for. It wasn't working with pushState on since I was still using hashtags but the root option fixed my issue! Thanks, I missed it in the documentation. – bijanv Aug 9 '11 at 4:48
feedback

If your server serves the page containing your app to www.example.com/text, then the backbone router will handle urls like www.example.com/text#example/123. It probably isn't advisable (even if your server supports it) to serve your page on www.example.com/test/, because that url indicates that it is a folder, not a particular page.

The backbone router pretty much ignores the baseurl (except for storing it and using it with pushState and popState), so you can serve your page on any url you want.

Hope htis helps.

link|improve this answer
I did manage to get it working through the URL you mentioned www.example.com/text#example/123 however it's not pretty at all and I was hoping I could get the slashes to work within there. I have my own internal routing that servers www.example.com/test and that is necessary for the app. Anyway I can specify the baseurl to include www.example.com/text and not just the domain itself? – bijanv Aug 8 '11 at 1:44
Without modification to the backbone codebase, I don't think you can achieve what you are suggesting. – idbentley Aug 8 '11 at 2:45
feedback

Your Answer

 
or
required, but never shown

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