I have a website hosted elsewhere - which is working fine, cloudflare directs traffic to it just fine.
Now I’d like to add a dummy URL to forward traffic to my personal zoom room. Eg, www.mydomain.com/zoomchat should forward to https://us04web.zoom.us/j/4083458404
I have tried using Page Rules and Redirect Rules with 301 redirects but it will not work. Traffic seems to be forwarding to the default website and then 404’s. Do I have to do this at the webserver side? I have added the 192.0.2.1 A record, proxied it but I can’t change the CNAME - which is pointing to the webserver. Anything else I can try? I tried bulk, but that did not work.
I would use a single static redirect rule for this. It will need to use a proxied hostname. You probably already have that since you have an existing website.
Match on the hostname and the URI path.
http.host eq "www.example.com" and http.request.uri.path eq "/zoomchat/"
You may need to adjust adjust the selection critera a little to meet your needs, but the above should get you close.
I was able to get it working with another domain I own. The issue seems to be with the Proxy switch for A & CNAME records and Vercel.com - the webhost. I have read of issues with Vercel and will reach out to them to try resolve, unless anyone lese has found a solution.
issue has been resolved by enabling SSL Force and by proxying all A & CNAME records. But now DNS resolution takes MUCH longer - like ~20 seconds. :\ Homepage comes up eventually, but it’s super slow. Trace did not show me much that was helpful.