I have listing of posts at http://example.com/posts. Each post has edit link, like
http://example.com/posts#/1/edit
when i click on the link, i am rendering edit post template and saving it. Now the issue is after updating the post, i want to redirect back http://example.com/posts.
when i do Backbone.history.navigate('/posts', true), i find http://example.com/posts#posts in the url.
May be i am missing something.