Configure the web server to properly recognize index.php as a default file (and turn off directory browsing for pete’s sake!)
The learning never ceases…
I just learned(for anyone out there w/ apache webserver…) that to turn off the directory browsing you can insert “Options -Indexes” (without quotes) into your .htaccess file
Yes. I’m surprised that more hosts don’t make this the default setting. But for those that don’t, Options -Indexes at the top of the .htaccess works too.
Also, for sites that don’t specify index.php as a default page, you can add this to the .htaccess:
DirectoryIndex index.php index.html index.htm
That just specifies what pages it will look for, in order of priority. So your index.php will take precedence. 🙂
Another useful one I did not know until recently… Some hosts support both PHP4 and PHP5, but require PHP5 files to have a PHP5 extension. If you want to run WordPress under PHP5 this way, then this trick in the .htaccess will let you do it:
AddHandler x-httpd-php5 .php
AddHandler x-httpd-php .php4
GoDaddy, BTW, is one of these types of hosts.