I am using Bootstrap 3.3.* and none of the above solution helped me, even marked as answer one. I just added below script and worked.
$(function(){
var hash = document.location.hash;
if (hash) {
$('.navbar-nav a[href="' + hash + '"]').tab('show');
}
$('a[data-toggle="tab"]').on('click', function (e) {
history.pushState(null, null, $(this).attr('href'));
});
});
Hope this helps you.