I have a domain name that I have set rules that forward it to a subdomain. This works as intended. Here is how I set this up: (These are examples, not the real domain names I am using)
https://*example.com/*
→ 301 Perm → https://test.example.com/$2
(Rule 1)
I also set an AAAA record for the example.com
to: @ 100::
I also set an AAAA record for the www to: @ 100::
I have set another one up as follows:
https://classic.example.com/*
→ 301 Perm → https://rdclassic.example.com/$2*
(Rule 2)
I also set an AAAA record for the classic to: @ 100::
When I go to classic.example.com
, it sends me to test.example.com
, not to rdclassic.example.com
. What am I doing wrong?