0

I have a requirement where I want to point my root domain i.e

www.abc.com or abc.com to one server (static website)

and *.abc.com to another server (application server)

I have bought domain from godaddy, I want godaddy to host my static website i.e

www.abc.com and abc.com.

I have a hosting account with rackspace so I want to point *.abc.com i.e. all

subdomains to my rackspace hosting.

My application will run on tomcat web server.

Any ideas :)

1 Answers1

2

Most domain registrars allow you to create wildcard DNS entries. So you can have www.abc.com pointing to your web server and *.abc.com pointing somewhere else.

Bryan
  • 7,628
  • 15
  • 69
  • 94
  • so you are saying i should do something like this. abc.com A 1.2.3.4 *.abc.com A 7.8.9.10 Am I right ? – Hussain Fakhruddin Jul 15 '10 at 07:43
  • 1
    The basic GoDaddy domain manager does **not** allow wildcard CNAME entries. You will need to use a third party DNS provider and configure their servers as the authoritative ones for your domain. – sybreon Jul 15 '10 at 11:00
  • I can use rackspace as a DNS provider but how do i configure GoDaddy servers to make rackspace DNS as the authoriatative ones. – Hussain Fakhruddin Jul 15 '10 at 18:15
  • I haven't used GoDaddy for a little while but I did setup wild card DNS on it. Try the advanced DNS editor. Also you don't want a CNAME, an A record is the correct type for this. – Kyle May 23 '12 at 02:22