Web Hosting Talk







View Full Version : Redirect help...


nocturnix123
03-19-2002, 05:23 PM
Just wondering...

i want my main index.htm to forward to another directory instantly and seamlessly (creating a forum-based website and the forum is installed in a few directories lower.) So i want www.mysite.com to redirect to /forum/wbboard/ instantly without being able to notice its redirecting.

If you could just post the content of what the index.htm would look like that would help me out alot :idea:


Thanks

Kulman
03-19-2002, 05:33 PM
<HTML>
<HEAD>
<SCRIPT language="JavaScript1.1">
<!--
location.replace("http://www.hostpro.ru/park/");
//-->
</SCRIPT>
<NOSCRIPT>
<META http-equiv="Refresh" content="0; URL=http://www.hostpro.ru/park/">
</NOSCRIPT>
</HEAD>
<BODY>
Господин Шпагин, вы опять не туда попали.<br><br>Эта страница давным-давно переехала на <A href="http://www.hostpro.ru/park/">новое место</A>.
</BODY>
</HTML>

This is the best way to doi it. Just replace my text and URLs with yours.

nocturnix123
03-19-2002, 07:47 PM
Well it works perfect...just curious though...what is the...

Господин Шпагин, вы опять не туда попали.<br><br>Эта страница давным-давно переехала на

stuff? What exactly is that for?