• Wow, this is driving me crazy. We’ve got a dev site, and a live site, and we’ve got two WordPress installations on both sites. With our “tsr” WordPress installation, if you want to look at it on the dev site, you can:

    https://www.cyberbitten.com/tsr/

    But with the other WordPress installation, if you go to look at it on the dev site, you automatically get re-directed to the live site. My guess is you will not be able to see this page:

    https://www.cyberbitten.com/bouncing_off_the_bottom/

    If you try to go there, you probably ended up here:

    https://www.thesecondroad.org/bouncing_off_the_bottom/

    This is driving the design team crazy.

    The .htaccess file doesn’t seem to have anything in it that would cause a problem:

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /bouncing_off_the_bottom/
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /bouncing_off_the_bottom/index.php [L]
    </IfModule>
    # END WordPress

    So what else could it be? Does WordPress have an option to auto-redirect? Perhaps we turned something on by accident?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Were they brand new installs, or did you migrate databases somewhere along the line? The only time this has happened to me is when I’ve moved up from my test box to production, and forgotten to adjust the database to allow for the new location.

    Thread Starter lkrubner

    (@lkrubner)

    Yes, I moved the files without changing the database. But I did that with both weblogs, so I’m surprised one is working and one isn’t.

    But thanks for the tip.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Is there anything in WordPress that forces redirects?’ is closed to new replies.