index.html as index page is standard followed by most web servers.
You can configure web server to treat somename.extension as the index page. But it will be better to follow the convention.
If you have a different name other than index.html you have to do one of the following
1) Configure the web server
2) For Apache, use .htaccess
3) Use Frame to load other page
4) Use Java Script Redirection
5) HTTP-EQUIV Redirection
Code:
<html>
<head>
<META HTTP-EQUIV="REFRESH" content="0;URL=somepage.extension">
</head>
<body>
</body>
</html>
Bookmarks