Web Design and Development, Domain, Webhoting and Media Solutions

Custom Search
 

How can I have my yahoo domain pull up a website at another location?

I have a site that I've constructed at www.wix.com. I would like for my Yahoo! domain name to pull up the site at this location. I'm a bit of a web-publishing noobie - so if you can help, please be detailed! Thanks in advance!

Public Comments

  1. Put the following code in between the <body> and </body> tags of the html page you want to pull up your other site: <div> <iframe src="http://www.wix.com" width="100%" height="100%"> <noframes> <body> <p>This page uses frames, but your browser doesn't support them.</p> </body> </noframes> </iframe> </div>
  2. As with moth things in programmig there is more than one way to take on this problem. The method owsleyskid outlined embeds the contents of one site in a frame on the other. This: <html>n <head> <title>Redirect</title> <script language="JavaScript"> window.location = "http://www.whatever.com/whereever.html"; </script> </head> <body> Redirect </body> </html> will redirect them from the one to other without embedding.
Powered by Yahoo! Answers