Redirect a domain alias to a directory

Netlify site name: hello-comma.netlify.app
Netlify custom domain alias: discord.hellocomma.org

netlify.toml:
[[redirects]]
from = “discord.hellocomma.org
status = 200
to = “hellocomma.org/invite/discord

Netlify DNS record:
Name: discord.hellocomma.org
TTL: 3600 seconds
Type; CNAME
Value: hello-comma.netlify.app.

I am having trouble getting discord.hellocomma.org to redirect to hellocomma.org/invite/discord.

Any ideas?

Hey @Kashinoga,
discord.hellocomma.org looks fine and like it’s loading properly, so I don’t think there’s any DNS issue. Can you try adding force = true to your netlify.toml, like:

[[redirects]]
from = “discord.hellocomma.org”
to = “hellocomma.org/invite/discord”
status = 200
force = true