mieqq Hello Big Boss, please how do I write these IP-CIDRs: 0.0.0.0/8, 127.128.0.0/16, ::ffff:0.0.0.0/104 and ::ffff:127.128.0.0/112 in the RegEx format:
0...* = 0.0.0.0/8 = 0.0.0.0-0.255.255.255
127.128.. = 127.128.0.0/16 = 127.128.0.0 - 127.128.255.255
::ffff:0...* = ::ffff:0.0.0.0/104 = ::ffff:0.0.0.0-::ffff:0.255.255.255
::ffff:127.128.. = :ffff:127.128.0.0/112 = ::ffff:127.128.0.0-::ffff:127.128.255.255
Writing the redirector with exclusions using wild-card in this format:
[URL Rewrite]
http:\/\/((?!.(0...|::ffff:0...|127.128..|::ffff:127.128..)).) https://$1 307
caused parsing errors even though the file was successfully loaded but the [URL Rewrite] became inactive. Please help