Whwnever we open a site the default opening page will be index.htm or index.html. I want whenever i open a site like www.mydomain.com instead of opening index.html it will open home.html or any other which i would like to make default. How can i do thid
I think it depends on your domain providor. But If you can’t change it, you may have to find a little bit of javascript to autodirect your index.html to your home.html. That’s what I had to do with a very old website of mine ages ago…. Here is the code:
<head>
<script language="JavaScript">
<!–
window.location="http://yourpage.com/home.html";
//–>
</script>
</head>
I hope this works for you.
BTW: When I previewed this post the url in the code has ";…" you only need the URL in quotes ( " ) and the semicolon ( ; ) at the end of it.