I have a rule similar to this:
iptables -t nat -I PREROUTING -p tcp --dport 80 -s 192.168.1.5 -j DNAT --to-destination 192.168.1.2:80
which redirects all http requests from 1.5 host to 1.2.. I want to make so it works only for one URL - to redirect only if user on 1.5 accesses google.com for example. Is it possible without using proxy?