I am using a router below
App.Router.PersonRouter = Backbone.Router.extend({
routes: {
"": "homepage",
"/p/:id": "getpost",
"/p/:id/*file": "download"
},
homepage: function () {
alert("requesting home page");
},
getpost: function (id) {
alert("Requested post with id " + id);
},
download: function (id, file) {
alert("person with id " + id + " is requesting file " + file);
}
});
and started to try HTML5 pushState option in backbone.js. by doing below.since the files are served from index.html file. It is just that alerts do not show when using HTML5 pushstate api but happily does when using hashbang url's.
Backbone.history.start({pushState:true,root:"index.html"});