on a button in a view I've setted this below, to redirect me to the home page:
redirect: function(){
Backbone.history.navigate("", {trigger: true});
}
it works perfectly but the url in my browser remain with a final #:
assets/www/index.html#
and from this url any href or button don't work while with:
assets/www/index.html
all works perfectly
How can I resolve?Can I remove #?