|
No, you can have index.htm, index.html, index.shtml, index.php etc all in the same folder. One of the files has to be the first page that's called but you can control this with .htaccess...
DirectoryIndex index.htm, index.php
...so if index.htm is present that file will be used as the home page, if it's not there index.php will be used.
|