(function () {
var path = window.location.pathname.toLowerCase();
// Give Ecwid time to render the page
setTimeout(function () {
var text = (document.body.innerText || "").toLowerCase();
var is404 =
text.includes("page not found") ||
text.includes("404") ||
text.includes("we couldn't find") ||
text.includes("we can’t find");
if (is404 && path !== "/") {
window.location.replace("https://www.thedigitalgadgets.sg/");
}
}, 1200);
})();