.htaccess basics
Lob this in your .htaccess file to change the default file in a directory:
DirectoryIndex holding.html
Remove www from urls using:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www.example.com$ [NC]
RewriteRule ^(.*)$ http://example.com/$1 [R=301,L]