const KEY_STATUS = 'status';
const step = +localStorage.getItem(KEY_STATUS);
if (0 === step) {
document.location.href = "http:///site.com/1";
} else if (1 === step) {
document.location.href = "http://site.com/2";
}
localStorage.setItem(KEY_STATUS, 1 + step);
const KEY_STATUS = 'status';