Automatische URL-Weiterleitung nach bestimmter Zeit

JavaScript
if (window.location.pathname !== "/") {
    setTimeout(function () {
        window.location.href = "/hierhin-weiterleiten";
    }, 15000); // 10000 milliseconds = 10 seconds
}