Redirecting you to your destination…
Please wait while the content loads…
if (url && (url.startsWith("http://") || url.startsWith("https://"))) {
window.location.replace(url); // ✅ safest redirect
} else {
document.body.innerHTML += "
❌ Invalid URL provided.
";
}
}, 6000); // Wait 6 seconds
});