Old Reddit Redirect to New

If you happen upon an old.reddit.com page, this will redirect you to its regular (www) version

目前为 2020-02-16 提交的版本。查看 最新版本

// ==UserScript==
// @name         Old Reddit Redirect to New
// @description  If you happen upon an old.reddit.com page, this will redirect you to its regular (www) version
// @version      0.1
// @author       mica
// @namespace    greasyfork.org/users/12559
// @include      http*://old.reddit.com/*
// @grant        none
// ==/UserScript==

window.location = document.URL.replace("old","www")