redirect website using nat

need a nat rule to redirect website to another one
for example redirect www.google.com to www.cnn.com

I do not use webproxy on my MK.OS 3.22

I try to do this from DNS with

/ ip dns static
add name=“www.google.com” address=216.36.51.233 ttl=1d

but it do not work

It is not going to work that way, you need to use web proxy.

Yes it work with me with web proxy before, but my configuration prevent me from
using web proxy as I have 2 ISP in my MK so I use some mangle rules which are impossible to run with web-proxy enabled

OK This is my Settings
Tota.jpg
/ip address
add address=172.30.7.209/24 broadcast=172.30.7.255 comment=“” disabled=no
interface=ISPONE network=172.30.7.0
add address=220.200.200.12/24 broadcast=220.200.200.255 comment=“” disabled=
no interface=ISPTWO network=220.200.200.0
add address=172.30.6.1/24 broadcast=172.30.6.255 comment=“” disabled=no
interface=Internal network=172.30.6.0
add address=172.30.4.2/24 broadcast=172.30.5.255 comment=“” disabled=no
interface=Internal network=172.30.4.0

/ip route
add gateway=220.200.200.1 routing-mark=ISP2
add gateway=172.30.7.225 routing-mark=ISP1
add gateway=172.30.7.225

/ip route rule
add dst-address=172.30.4.0/24 action=lookup table=main
add dst-address=172.30.6.0/24 action=lookup table=main
add dst-address=172.30.7.0/24 action=lookup table=main
add dst-address=220.200.200.0/24 action=lookup table=main
add src-address=172.30.7.0/24 action=lookup table=ISP1
add src-address=220.200.200.0/24 action=lookup table=ISP2
add routing-mark=ISP1 action=lookup table=ISP1
add routing-mark=ISP2 action=lookup table=ISP2

/ip firewall mangle
add chain=prerouting src-address=172.30.4.0/24 action=mark-routing
new-routing-mark=ISP1 passthrough=no
add chain=prerouting src-address=172.30.6.0/24 action=mark-routing
new-routing-mark=ISP2 passthrough=no

Use the following OPEN DNS
208.67.222.222
208.67.220.220

with this setting the network 172.30.4.0 peroutimg to ISP1 and the network 172.30.6.0 peroutimg ISP2
When I enable web-proxy the two networks 172.30.6.0 and 172.30.4.0 takes from ISP1 only

DO you have another solution