Redirection problem

I have WordPress MU 2.8.5.2 with Buddypress 1.1.2 installed. I added the domain mapping plugin 1.0.3.

I’ve added three domains for blogs and they all seem to be working fine. (You can try one at: http://closekoppers.org)

The problem we are having now is with the main domain http://friendsofwildiris.org. If you click on the links to any post other than the most current post, they all re-direct back to friendsofwildiris.org root.

Any ideas of where I should look to resolve this issue?

  • cdc19
    • Site Builder, Child of Zeus

    I haven’t, but my ISP helped me resolve a problem with the domain redirection and they may have.

    Here is the content of the .htaccess file.

    RewriteEngine On

    RewriteBase /

    #uploaded files

    RewriteRule ^(.*/)?files/$ index.php [L]

    RewriteCond %{REQUEST_URI} !.*wp-content/plugins.*

    RewriteRule ^(.*/)?files/(.*) wp-content/blogs.php?file=$2 [L]

    RewriteRule ^(.*/)?avatar/(.*) wp-content/avatar.php?file=$2 [L]

    # add a trailing slash to /wp-admin

    RewriteCond %{REQUEST_URI} ^.*/wp-admin$

    RewriteRule ^(.+)$ $1/ [R=301,L]

    RewriteCond %{REQUEST_FILENAME} -f [OR]

    RewriteCond %{REQUEST_FILENAME} -d

    RewriteRule . – [L]

    RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-.*) $2 [L]

    RewriteRule ^([_0-9a-zA-Z-]+/)?(.*.php)$ $2 [L]

    RewriteRule . index.php [L]

    <IfModule mod_security.c>

    <Files async-upload.php>

    SecFilterEngine Off

    SecFilterScanPOST Off

    </Files>

    </IfModule>

  • cdc19
    • Site Builder, Child of Zeus

    I did a bit more digging and realized the post now working were in the events category. I removed bp-events plugin and they are now working.

    I still have one last redirection that is not working correctly.

    I am using subdomains for blogs. Previously when someone entered an incorrect subdomain, such as, myblog.siteurl.org. They would be redirected to the page asking if they would like to create a blog. Now they get redirected to a blank page.

    Any ideas of where I should look to troubleshoot this problem?

    Thanks.

  • cdc19
    • Site Builder, Child of Zeus

    Seems this is a problem with accessing wp-signup.php. I’m getting the same blank page when I click “Register” from the login page.

    I changed the setting for Allow new registrations to “Enabled” from “Only logged in users can create blogs” just for the purpose of testing. And the blank screen still occurs.