PDA

View Full Version : .htaccess syntax



Wojtek
October 30th, 2002, 18:17
How to configure a custom index file for a given directory.

Ex: user loads /test/ and test.html is loaded instaed of default index.html

keith
October 30th, 2002, 19:42
DirectoryIndex test.html index.htmlfiles that are listed first have priority. so if "test.html" doesn't exist, it will load "index.html", etc...

Wojtek
October 30th, 2002, 19:47
Thanks keith