View Single Post


Old
  Post #3 (permalink)   09-29-2004, 09:15 AM
Artashes
HD Management Staff
 
Artashes's Avatar
 
Join Date: Apr 2003
Location: Montreal, Canada
Posts: 5,309

Status: Artashes is offline
If you need to make a redirect, you can try this as well:
Code:
<SCRIPT language="JavaScript">
<!--
browserName=navigator.appName; 
browserVer=parseInt(navigator.appVersion);

  if ((browserName=="Netscape" && browserVer>=4) || (browserName=="Microsoft Internet Explorer" && browserVer>=4))    
  version="ver4";
  else
    version="other";

/* Version 4 browser URL */
if (version=="ver4")
  window.location="http://www.myname.com/name";

/* Other browsers URL */
else
  window.location="http://www.myname.com/name";

//-->
</SCRIPT>
Add it into the "HEAD" tags of the index page.
__________________
Welcome to our web hosting community for grownups.

Read the RULES you have agreed to.