Link to home
Start Free TrialLog in
Avatar of steno1122
steno1122

asked on

DNS URL Redirect / Forwarding

Hello,
Our ISP manages all of our external DNS.  We currently have a URL that points to a pair of web servers that we will be retiring.  We want the URL to be redirected to a new set of web servers that has a new URL.  Basically what I would like to happen is when someone types http://www.xxxxx.com they are automatically redirected to http//www.yyyyyy.com (obviously xxxxx.com and yyyyy.com are just examples).  The redirect would also appear in their browsers.  I have no idea how to do this.  I initially thought a CNAME record would work but the old URL would still remain in the browser.  Can someone give me directions on how to do this?

User types in http//www.xxxxx.com in their browser > they are redirected to http://yyyyy.com and http://yyyyy.com appears in their browser.

Thanks for the assistance!
ASKER CERTIFIED SOLUTION
Avatar of Amirchoupani
Amirchoupani
Flag of Iran, Islamic Republic of image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
why not just replace the index.html on the old hosting site with something like :


<html>
<head>
<HEAD>
<meta name="revisit-after" content="14 days">
<meta http-equiv="Refresh" content="1; URL=http://www.yyyyyy.com">
</head>
</HTML>
or if you are retiring them.. then get the DNS changed to point to the new Webserver IP and add another host entry for that www.xxxxxx.com and point it to the virtual directory of www.yyyyyy.com

what web server software are you running ?