Posted by: decees on: January 3, 2009
from : wordpress.org/codex
When you install WordPress, you can install it into its own folder and retain the index.php that comes with WordPress. The link to enter your WordPress driven version of your site would be to this /wordpress/index.php from the root /index.php.
Now you can upload your splash page to your root server folder.
There is another form to upload your static front page without moving all your WordPress files to another folder.
When you request a folder in a Apache web server (for example the folder called /chouette), the core of Apache will search for a file with any of the names in a list saved in httpd.conf. If your server lets you use .htaccess files for change the original configuration, you can follow these steps:
DirectoryIndex home.php index.php
Save and upload the modified .htaccess file.
You need to mention index.php as a second choice, otherwise you will not be able to access the index.php in directories below the wordpress root directory unless you explicitly mention it in the URL. For instance, the url:
http:///wp-admin/would not work.