Rename index.html to default.html

larry

New member
Joined
Jan 31, 2005
Messages
2
Is there any way I can change the name of the home page from index.html to default.html?
 
Are you an end user or an administrator?

If your an administrator, you can add a directory container in the httpd.conf like so:


<Directory "/path/to/website/root">
DirectoryIndex default.html default.htm default.php default.cgi default.pl
</Directory>


Something to that effect.

(NOTE: I have never tried this, and don't even know for sure if you can put a DirectoryIndex option in a Directory container like this. If not, someone please correct me and call me an idiot. :D )

I'm not sure if you can do it as a user, you will have to ask one of the more experienced DA people. ;)

Louie
 
Last edited:
Back
Top