$(document).ready(function() {
    if (location.pathname != "/") {
        return;
    }
    var h = location.hash.replace('#','');
    if (h.length>0) {
        location.href = h;
    }
});
