Please Please help me, Subdomain Redirection!

I am trying to do the same thing. I can't find anything under "Subdomain Management" to setup the redirect.
 
Can always make a subdomain and add the following index.html in the subdomain's directory:

Code:
HTML>
<HEAD><TITLE>Your site</TITLE>
</HEAD>
<BODY>
<SCRIPT LANGUAGE="JavaScript">
<!--
 function redirect()
 {
  window.top.location = "http://www.destinationsite.com"
 }

 setTimeout("redirect();", 0)
//-->
</SCRIPT>
<br><br>You are being redirected to the main site in a few moments, click <a href="http://www.destinationsite.com">here</a> if nothing happens
</BODY>
</HTML>
 
If your forum resides in a directory called phpBB2, like mine, you would go to the user control panel, click on "Site Redirection" down in the advanced section, and enter /phpBB2 in the Local URL path box, and http://forum.g-forums.co.il in the Destination URL box.

If your forum resides in the directory you stated, of /forum, your would not need a redirect at all, because http://forum.g-forums.co.il is the exact same location as http://www.g-forums.co.il/forum/.
 
Back
Top