I have set up Multiple Blogs Through Multiple Installs on a single database via instructions here http://codex.wordpress.org/Installing_Multiple_Blogs.
The problem is viewable by going to http://weaver.net/MFA/ and click 'about' it takes you to http://weaver.net/blog/about
Could this be an .htaccess issue?
I looked at the .htaccess file and only saw this:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /blog/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
</IfModule>
So I added this to the above:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /MFA/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /MFA/index.php [L]
That didn't help. But something keeps me thinking it has to do with mod_rewrite and my h.htaccess file.
suggestions!?!?