
// redirect /foo.html#/bar.html url to /bar.html

if (location.hash && location.hash.indexOf('/') == 1) {
    location = location.hash.substr(1);
}

