I put 2 more blogs on my site, and used the same database, changing the config file on both with:
$table_prefix = 'wp2_';
and $table_prefix = 'wp3_';
I can only use the default permalinks on blogs 2 and 3, and the .htaccess files on both only have this:
# BEGIN WordPress
# END WordPress
While the 1st blog has this:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /blog/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
</IfModule>
# END WordPress
And even when I edited the above and added '2' and '3' at the end of 'blog', respectively, and uploaded the .htaccess, still no go, I still just got something like this:
"The requested URL /blog2/2009/03/01/test-post/ was not found on this server."
Anyone know what's up? Thanks in advance.