Great tips!
I looked forever to find a way to get nxi.t35.com/main.html to be auto-loaded.
I just made a index.html that redirects to main.html.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Please wait...</title>
<meta http-equiv="REFRESH" content="0;url=http://nxi.t35.com/main.html"></HEAD>
<BODY>
Loading. Please wait...
</BODY>
</HTML>
Theres a better way, use this code
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Please wait...</title>
<script type="text/javascript">
<!--
window.location.replace="main.html";
-->
</script>
<NOSCRIPT>
<meta http-equiv="REFRESH" content="0;url=http://nxi.t35.com/main.html">
</NOSCRIPT>
</head>
<body>
Loading... Please Wait
</body>
</html>
The
<script type="text/javascript">
<!--
window.location.replace="main.html";
-->
</script>
makes the main.html page replace index.html.
This code is better than meta because it dosen't break the back button and doesn't make a sound to show the page has been redirected.
This part only works if the browser supports Javascript.
The
<NOSCRIPT>
<meta http-equiv="REFRESH" content="0;url=http://nxi.t35.com/main.html">
</NOSCRIPT>
is for browser which
DON'T support Javascript. Browsers which support Javascript ignore the meta tag and use the replace tecnique.
(I don't know if it validates through W3C because I haven't done that, I just use index.html, but validation won't matter on the redirect page, just on the main page)