Last active
December 13, 2023 23:12
-
-
Save ziadoz/6ac1b0f4a0681454f051f8d23fa6442d to your computer and use it in GitHub Desktop.
StopTheMadness - Old Reddit Redirect Regular Expression
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Redirect from New Reddit to Old Reddit, but ignoring media links, which break and point to a Lady Gaga nice hat page. | |
Links: | |
https://old.reddit.com/r/bugs/comments/15p1ctt/why_does_clicking_any_image_on_reddit_open_the/ | |
https://github.com/tom-james-watson/old-reddit-redirect/blob/master/background.js | |
https://underpassapp.com/StopTheMadness/support-chrome.html#redirects | |
https://gist.github.com/msanders/52700d5c5ed76f1114594ddb862b530e | |
Pattern: | |
/^https?://www\.reddit\.com(?!/(?:(?:media|gallery|settings)\b|r/\w+/s/))([/#?].*)?$/ | |
Replacement: | |
https://old.reddit.com$1/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment