Page 1 of 1
How to block content from domain[2+3] displayed on domain1 ?
Posted: Thu Apr 23, 2015 11:16 am
by tovog
Please, help me to write a filter causing this:
I don't want to see obscene pictures from
http://oidnes.cz and
http://i.idnes.cz/ when I'm browsing web
http://jizdnirady.idnes.cz/ (only here).
Thank you!
Re: How to block content from domain[2+3] displayed on domain1 ?
Posted: Thu Apr 23, 2015 11:33 am
by lewisje
Code: Select all
||oidnes.cz^$image,domain=jizdnirady.idnes.cz
||i.idnes.cz^$image,domain=jizdnirady.idnes.cz
These rules block
all images from those domains (and subdomains), because I don't have enough info. to pick out just the obscene ones with a pattern.
If you want to block just those domains, and not subdomains, and specifically over HTTP and not HTTPS, use these rules instead:
Code: Select all
|http://oidnes.cz^$image,domain=jizdnirady.idnes.cz
|http://i.idnes.cz^$image,domain=jizdnirady.idnes.cz
Re: How to block content from domain[2+3] displayed on domain1 ?
Posted: Thu Apr 23, 2015 1:51 pm
by tovog
Very good, thank you.
This is exactly what I wanted to do.