i have all of my webpages named ( aboutus.html - garden.html ect...)
is there a way of nameing index.html so that it will still act as the homepage without it being called index?
I assume that your server is Apache and supports custom server settings:
You need to create an .htaccess file with a rule that specifies the file name for index pages:
Code:
DirectoryIndex filename.ext
The file needs to be in the root directory of your site.