const devMode = true; // set to false when you want to go back to your normal site if(devMode && window.location.pathname !== '/under-dev.html'){ window.location.replace('under-dev.html'); } else if (!devMode && window.location.pathname === '/under-dev.html') { window.location.replace('index.html'); }