-
Notifications
You must be signed in to change notification settings - Fork 165
Some Examples
Some examples of how some redirects (using Wildcard Pattern Type, instead of regular expressions),
Include pattern: http*://dereferer.org/?
Redirect to: $3
Example: http://dereferer.org/?http://www.imdb.com/title/tt1800302/ → http://www.imdb.com/title/tt1800302/
Include pattern: http*://downloads.sharewareonsale.com/files/hub/sharewareonsale.com/*_hub.exe
Redirect to: https://downloads.sharewareonsale.com/files/$2.exe
Example: https://downloads.sharewareonsale.com/files/hub/sharewareonsale.com/SharewareOnSale_Giveaway_Makesoft_DuplicateFinder_hub.exe → https://downloads.sharewareonsale.com/files/SharewareOnSale_Giveaway_Makesoft_DuplicateFinder.exe
Include pattern: http*://m.webnovel.com/*
Redirect to: https://www.webnovel.com/$2
Example: https://m.webnovel.com/book/9240018005002505 → https://www.webnovel.com/book/9240018005002505
Include pattern: https://www.youtube.com/watch?v=*
Redirect to: https://piped.kavin.rocks/watch?v=$1
Example: https://www.youtube.com/watch?v=dQw4w9WgXcQ → https://piped.kavin.rocks/watch?v=dQw4w9WgXcQ
Include pattern: https://piped.kavin.rocks/*&feature=youtu.be
Redirect to: https://piped.kavin.rocks/$1
Example: https://www.youtube.com/watch?v=dQw4w9WgXcQ&feature=youtu.be → https://piped.kavin.rocks/watch?v=dQw4w9WgXcQ
Include pattern: https://www.curseforge.com/*
Redirect to: https://legacy.curseforge.com/$1
Example: https://www.curseforge.com/minecraft/mc-mods/pinkys-misc-biomes-and-mobs → https://legacy.curseforge.com/minecraft/mc-mods/pinkys-misc-biomes-and-mobs
Hoping others will add some more Regular expressions (beyond the ones in the help file), so I can better understand and incorporate them... :)