How to get a site redirected ?

titan09

New member
Hi i have a site that i put on some years ago . Now i have changed my host but that site still exists and i would like to get it redirected to my new site . Can someone tell me the anyways to achieve this ?
 
titan09;

Just to clarify...

- Do you mean you have a website that you currently have changed host and you want to get your domain to link with your new provider.

- Or do you mean that you have a new website with a new provider but you want your old domain to redirect to your new site?
 
I guess he wants to transfer his website to his new host.


Well it's quite simple to do so, change the DNS of the new host to the old host DNS.



:)
 
If you want to keep the domain on the old server, but redirect it to the new domain, simply open a text editor and put in the following:

Code:
<?php

header("Location: http://www.newdomain.com");

?>

Save it as index.php, and upload it to the public_html (or equiv.) folder of the old server/domain.

If you want the entire domain moved to the new server, then login to your domain registrar, and change the nameservers to point to the new server, then use the Parked Domain feature through your control panel, and add the domain that way.
 
Back
Top