Old Reddit Redirect (with Funny Hat fix)

Redirect any new reddit url except for "/media", "/gallery" or "/poll" to old reddit. Fixes the "Funny Hat" redirect.

// ==UserScript==
// @name         Old Reddit Redirect (with Funny Hat fix)
// @namespace    http://asleepysamurai.com
// @version      0.1
// @description  Redirect any new reddit url except for "/media", "/gallery" or "/poll" to old reddit. Fixes the "Funny Hat" redirect.
// @author       Balaganesh Damodaran
// @match        https://www.reddit.com/*
// @match        https://reddit.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=reddit.com
// @grant        none
// @license      BSD Zero Clause License
// ==/UserScript==

(function() {
    'use strict';

    if(!['/gallery','/media','/poll'].find(pathPrefix => window.location.pathname.toLowerCase().startsWith(pathPrefix))){
        window.location.host = 'old.reddit.com'
    }
})();