cancel
Showing results for 
Search instead for 
Did you mean: 

How to forward a site??

ady
Grafter
Posts: 289
Registered: ‎25-09-2007

How to forward a site??

Hey, seeing as my attempt of loading a forum onto my webspace/site failed, I would like to link my site directly to a free one. On my other website I can simply enter where I want it to link to in userspace options or something.
So basically to sum up, can someone tell me how I can link www......co.uk to www.....bla bla.com or something! thanks
1 REPLY 1
samuria
Grafter
Posts: 1,581
Thanks: 3
Registered: ‎13-04-2007

Re: How to forward a site??

If you use this code as your index.htm on the site you want people to be redirected from it will do the job change www.plus.net to your own site in 2 places. Changing the content=2 to a lower number speed it up.
Other than that you would have to change the dns setting some hosting companies have a setting to do this for you but the page will work great and it seasy

<html>
<head>
<title>A web page that points a browser to a different page after 2 seconds</title>
<meta http-equiv="refresh" content="2; URL=http://www.plus.net">
<meta name="keywords" content="automatic redirection">
</head>
<body>
If your browser doesn't automatically go there within a few seconds,
you may want to go to
<a href="http://www.plus.net">the destination</a>
manually.
</body>
</html>