Here is what I plan to do:
My new WP site is in a folder called /wp27/. The "old" site is in the root, with index.html as the front page.
I'll delete index.html (copy and save it on my hard drive, of course), and move /wp27/index.php and /wp27/.htaccess to the root. This way, all the old content is still there and searchable, but people will land on index.php if they go to http://www.larchmontgazette.com. I plan to make a user-friendly 404 page at some point, too.
The only thing worrying me now is this bit from the wordpress.com instructions:
Code:
# Copy the index.php and .htaccess files from the WordPress directory into the root directory of your site (Blog address). # Open your root directory's index.php file in a text editor # Change the following and save the file. Change the line that says: require('./wp-blog-header.php'); to the following, using your directory name for the WordPress core files: require('./wordpress/wp-blog-header.php');
A refinement that isn't necessary but might be nice: can I simply change /wp27/ to /wp/? I used the 27 (2.7) to prevent confusion while I had 2 other WP folders running during testing of themes. I would rather just have it plain wp, but I'm afraid of possible effects on the database side of things.