I bought a domain from GoDaddy, say abc.com.
I was able to forward profile.abc.com to http://www.linkedin.com/in/myname.
Not I've changed my domain nameserver to Amazon Route 53, I want to do the same thing but wasn't able to do so, here's what I've tried:
Create a new record set, name is profile.abc.com, type is CNAME, value is http://www.linkedin.com/in/myname.
But this doesn't work.
I have another CNAME, hg.abc.com, which points to my BitBucket (value = www.bitbucket.com), that one works.
The contents of the CNAME record cannot be a URL. It must point to another name in the DNS, just like
hg.abc.com
does.It sounds like what you want to do is host a web site at
profile.abc.com
which redirects all incoming requests tohttp://www.linkedin.com/in/myname
. If so, that's exactly what you should do:Redirect
directive)profile.abc.com
that points to the canonical name of the server that hosts the web site, ORprofile.abc.com
that give the IP addresses of the server that hosts the web site.