(function() { const pattern = /https?:\/\/www.reddit.com/; // Change this to match the URL pattern you want const currentUrl = window.location.href; const redirectTo = currentUrl.replace("www", "old"); // Set the URL to redirect to if (pattern.test(currentUrl)) { window.location.replace(redirectTo); } })();