NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Runescape Wiki redirect // @description Redirects from the deprecated Wikia to the new Wiki // @license MIT // @version 1.0.0 // @match *://oldschoolrunescape.wikia.com/* // @match *://runescape.wikia.com/* // @run-at document-start // @updateURL https://openuserjs.org/install/Knoets/Runescape_Wiki_redirect.meta.js // ==/UserScript== if (window.location.hostname.startsWith("oldschoolrunescape.wikia.com")) { window.location.replace("https://oldschool.runescape.wiki" + window.location.pathname.replace("wiki","w")); } else if (window.location.hostname.startsWith("runescape.wikia.com")) { window.location.replace("https://runescape.wiki" + window.location.pathname.replace("wiki","w")); }