I'm sure this is user error as I'm new and have a complex setup.
My main page works fine. The "Hello World" post works fine and comes up as "http://localhost.localdomain/wpmu/blog/hello-world/".
However, the Updated Blogs page "my_blog_title" links to the directory "/wpmu/core" which is where I have the WPMU core files. Header, footer and sidebar show up but body has "Error 404 - Not Found".
Everything in settings is pointing to /wpmu/core, but either that's wrong or I've got something wrong in .htaccess.
# BEGIN WordPress
<IfModule mod_rewrite.c>
# Hey-ho let's go!
RewriteEngine On
# Base is the URL path of the home directory
RewriteBase /
# Base goes to WordPress
RewriteRule ^$ /wpmu/core/index.php [L]
# Skip real files and directories
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Otherwise send it to WordPress
RewriteRule .* /wpmu/core/index.php [L]
</IfModule>
# END WordPress
<IfModule mod_security.c>
<Files async-upload.php>
SecFilterEngine Off
SecFilterScanPOST Off
</Files>
</IfModule>
BTW, here's my configuration
Windows XP, XAMPP, mod_rewite on, PHP5
File StructureSetup to ease SVNing wordpress
/core
/wp-content (is a SVN export from the core directory)
wp-config.php (moved from core)
.htaccess (moved from core)
Any help is appreciated. I know I'm close.
Oh yeah, Happy Holidaze!!