I have a set of subdomains defined on my domain like this:
CNAME sub1.example.com -> sub1.herokuapp.com
CNAME sub2.example.com -> sub2.appspot.com
CNAME www.example.com -> example.herokuapp.com
Now I'd like to add CNAME *.example.com -> example.herokuapp.com
to catch folks who put in too many WWWs or type in other missing subdomains. But will the *
take priority over the explicitly defined subdomains or will the subdomains continue to work as expected?
I'm using Route53 if it makes a difference.