Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a company hosting my domain as they have good DNS options, and another hosting the web space.

I need to be able to direct the domain that is hosted on the first one to the web space hosted on the second.

Seems simple, but here are the problems i encounter.

  1. Domain forward - this then shows the web space site address and isn't what i want.
  2. Domain forward masking - shows the correct domain, but if I install something like a PHP forum etc. it doesn't work, seems to get confused with the paths.

Is there a simple way that I am not aware of for hosting a domain on one provider and forwarding to another?

share|improve this question
1  
Set the wildcard @ as an Address record to point to the IP address of the hosting provider, then create a CNAME record of www and point it to your host name. – Burhan Khalid Dec 2 '12 at 8:25
Also, this is better suited for serverfault.com – Burhan Khalid Dec 2 '12 at 8:32

closed as off topic by Burhan Khalid, rolve, Matteo, Explosion Pills, nzpcmad Dec 2 '12 at 18:22

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

2 Answers

What you really want is a regular DNS mapping (an A, AAAA or CNAME record) pointing to the servers of the web host. Ask your web host what IP or host alias you should point your domain to.

Any type of redirect or HTML framing should be avoided. Try to always do a normal DNS mapping.

I have seen web hosts that don't allow external DNS providers. The only reason they do that is so they can have complete control over your domain name (getting the registration fees, decreasing their own support costs). You should avoid such hosts because they intentionally put up obstacles for their customers for small company gains. Any good host can provide you with either an IP or a CNAME alias to use.

share|improve this answer
Thanks guys. I have tried editing the A record to the IP address i get when i ping the exisiting host however i get a 404 error after setup. I also asked the web host provider what IP to use and they simply gave me a link to a help file that tells me to direct my name servers to them! so i guess this then means i again loose control of my DNS settings. – user1869991 Dec 2 '12 at 10:37

Set the wildcard @ as an Address record to point to the IP address of the hosting provider, then create a CNAME (basically, an alias) record of www and point it to your domain name.

This makes the default location of your domain name pointing to your hosting provider's IP; which means http://example.com/ will point to your host provider.

The CNAME record makes www point to the same place as example.com., so that http://www.example.com/ will also work.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.