How I can make this filter work with all session ID-s, not just the current one? Here is the code:
OR:something.com#A(href=index.php?page=payment&session=0a123bv3
How to block all links which contains word "payment"?
Thanks in advance
OR:something.com#A(href=index.php?page=payment&session=0a123bv3
Transit wrote:How I can make this filter work with all session ID-s, not just the current one?
Code: Select all
something.com#A(href^=index.php?page=payment)(href*=&session=)
Transit wrote:How to block all links which contains word "payment"?
Code: Select all
something.com#A(href*=payment)