Sorry for how basic this question is.
In Frontpage, your index page will be saved as index.htm however in servers, the home page is index.
html . This can cause all kinds of problems. I have changed all links to have them point to the index.
html page and on the index.htm page I put a short redirect script (rather than delete it) in case someone has an old cached page.
You will be redirected to
http://www.my-web-site.c0m.
<script language="JavaScript">
var
URL = "http://www.my-web-site.c0m";
self.location =
URL;
</script>
Did I do this correct?