For WordPress 1.5, just copy the index.php in /wordpress to the document root.
You'll need to edit it though:
<?php
/* Short and sweet */
define('WP_USE_THEMES', true);
require('./blog/wp-blog-header.php');
?>
The important part is the require() function.
'./blog/wp-blog-header.php'
This path tells PHP to look in the current directory (domain.com/) for the blog directory (domain.com/blog/) and load up the wp-blog-header.php
So yours might need to be
<?php
/* Short and sweet */
define('WP_USE_THEMES', true);
require('./wordpress/wp-blog-header.php');
?>
Oh yeah, this makes it so all the links will be domain.com/index.php instead of domain.com/wordpress/index.php, so you'll need to update the WordPress configuration as well.
Options -> Blog address (URI) would be http://domain.com
Perl / MySQL / HTML CSSEdited by Atropos7 on 03/10/05 03:55 PM (server time).