How do I configure netlify to redirect from a subdomain to a different domain?

The problem: I want to be able to redirect from a subdomain http://chat.danjones.tech to a google hangout https://meet.google.com/abc-defg-hij

I have tried to add a netlify.toml redirect, but this doesn’t work

[[redirects]]
  from = "http://chat.danjones.tech"
  to = "https://meet.google.com/abc-defg-hij"
  status = 301
  force = true

It is redirecting me to my index.html instead.

Am I missing something?

chat. is classed as a separate domain so you’ll need to add it to the UI :slight_smile:

There’s this discussion which shares the same sentiment :+1: