blob: b0698dc6d0c858427cdaff6c9a95cade856e1a42 (
plain)
1
2
3
4
5
6
7
8
|
(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);
}
})();
|