Post Reply 
how to find/replace part of the url
Aug. 18, 2017, 02:38 PM
Post: #3
RE: how to find/replace part of the url
Don't use "URL:" when maintaining header filter order is necessary.
"URL:" match includes protocol.
$URL match includes protocol.
Add a domain match. Leading wildcards use more time.

Code:
[HTTP headers]
In = FALSE
Out = TRUE
Key = "! : JUMP: q=hello to q=hello&c=1 (out)"
URL = "*q=hello(^\&c=1)$URL(\1q=hello\2)$JUMP(\1q=hello&c=1\2)"

Code:
[HTTP headers]
In = FALSE
Out = TRUE
Key = "URL: Jump q=hello to q=hello&c=1 (out)"
Match = "\1q=hello(^\&c=1)\2"
Replace = "$JUMP(\1q=hello&c=1\2)"
Add Thank You Quote this message in a reply
Post Reply 


Messages In This Thread
how to find/replace part of the url - yazan - Aug. 17, 2017, 01:40 PM
RE: how to find/replace part of the url - JJoe - Aug. 18, 2017 02:38 PM

Forum Jump: