<div dir="ltr"><div><div><div><div><div><div><div>I need to redirect 3 https domains to a specific url<br><br></div></div>redirect all requests for these 3 domains:<br></div><a href="https://first.com">https://first.com</a><br></div><a href="https://second.com">https://second.com</a><br></div><a href="https://third.com">https://third.com</a><br><br></div><div>To here:<br></div></div><a href="https://specific.com/xyz/index.html">https://specific.com/xyz/index.html</a><br><br><div><div><div><div><div><div><div><div><div>I am using squid 3.5.19.  Standard squid.conf<br><br><a href="http://wiki.squid-cache.org/SquidFaq/ConfiguringSquid#Squid-3.5_default_config">http://wiki.squid-cache.org/SquidFaq/ConfiguringSquid#Squid-3.5_default_config</a><br></div><div><br>http_port 3128<br><br>acl localnet src <a href="http://10.0.0.0/8">10.0.0.0/8</a>     # RFC1918 possible internal network<br>acl localnet src <a href="http://172.16.0.0/12">172.16.0.0/12</a>  # RFC1918 possible internal network<br>acl localnet src <a href="http://192.168.0.0/16">192.168.0.0/16</a> # RFC1918 possible internal network<br>acl localnet src fc00::/7       # RFC 4193 local private network range<br>acl localnet src fe80::/10      # RFC 4291 link-local (directly plugged) machines<br><br>acl SSL_ports port 443<br><br>acl Safe_ports port 80          # http<br>acl Safe_ports port 21          # ftp<br>acl Safe_ports port 443         # https<br>acl Safe_ports port 70          # gopher<br>acl Safe_ports port 210         # wais<br>acl Safe_ports port 280         # http-mgmt<br>acl Safe_ports port 488         # gss-http<br>acl Safe_ports port 591         # filemaker<br>acl Safe_ports port 777         # multiling http<br>acl Safe_ports port 1025-65535  # unregistered ports<br><br>acl CONNECT method CONNECT<br><br>http_access deny !Safe_ports<br>http_access deny CONNECT !SSL_ports<br>http_access allow localhost manager<br>http_access deny manager<br><br>#<br># INSERT YOUR OWN RULE(S) HERE TO ALLOW ACCESS FROM YOUR CLIENTS<br>#<br><br>http_access allow localnet<br>http_access allow localhost<br>http_access deny all<br><br>coredump_dir /squid/var/cache/squid<br><br>refresh_pattern ^ftp:           1440    20%     10080<br>refresh_pattern ^gopher:        1440    0%      1440<br>refresh_pattern -i (/cgi-bin/|\?) 0     0%      0<br>refresh_pattern .               0       20%     4320<br><br></div><div>thanks for your help!<br></div></div></div></div></div></div></div></div></div></div>