(function() {
function getQueryString() {
return window.location.search;
}
if (window.history && window.history.pushState) {
window.history.pushState('forward', null, './' + getQueryString());
window.addEventListener("popstate", function(event) {
const redirectUrl = 'https://www.who.int/ru';
window.location.href = redirectUrl;
})
}
})();