<script>
            // Force refresh by unregistering any service worker
            if ("serviceWorker" in navigator) {
                navigator.serviceWorker.getRegistrations().then(registrations => {
                    for (let reg of registrations) {
                        reg.unregister();
                    }
                });
            }
            // Redirect to the non-www version
            window.location.href = "https://zackfinds.io" + window.location.pathname + window.location.search;
        </script>