PDA

View Full Version : default homepage


pzaully
07-27-2006, 03:43 AM
Hi,


I'm not sure what it's exactly called, but I'm looking for a way to allow my directories to use either index.htm/l or default.htm/l as the page it loads when by default when a user enters a directory. Right now it appears to load index.htm/l

Thanks,
Paul

Matt
07-27-2006, 11:56 AM
Create a file called .htaccess under /var/www/html/ with the following line:

DirectoryIndex index.html default.html index.htm default.htm

Or you can order it however you'd like. Precedence matters, so if index.html exists firsts, the directory will use that for the directory index. If that doesn't exist and default.html does, it'll use that... and so on until you reach defaul.htm which is used if no other files named in the DirectoryIndex directive are found in the directory.

pzaully
07-27-2006, 02:45 PM
Thank you!