• Resolved austin2k

    (@austin2k)


    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!?!?

Viewing 1 replies (of 1 total)
  • Thread Starter austin2k

    (@austin2k)

    SOLVED!
    The problem is the .htaccess file was located in the root at http://www.weaver.net.

    Each blog was using this single .htaccess file.

    Solution:
    Delete the .htaccess file in the root as I don’t need it there.
    Create a separate .htaccess (that contained my mod-rewrite code specific to that site) and placed it in the same directory as my WP blog.

Viewing 1 replies (of 1 total)
  • The topic ‘Link from Blog B takes you to page on Blog A – htaccess issue?’ is closed to new replies.