What should my home page be called?

On an ASP server, your start file (the file to be read when a user visits http: //www.yourdomain.com) must be named one of the following:

  1. default.aspx
  2. index.aspx
  3. default.cshtml
  4. default.asp
  5. index.asp
  6. index.shtml
  7. default.wml
  8. index.wml
  9. default.html
  10. default.shtml
  11. default.htm
  12. index.htm
  13. index.html

The files are read from top to bottom order so that the top one have higher priority than the remaining ones.

Article from the support category: ASP & ASP.NET