Is there anything in WordPress that forces redirects?
-
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 WordPressSo what else could it be? Does WordPress have an option to auto-redirect? Perhaps we turned something on by accident?
- The topic ‘Is there anything in WordPress that forces redirects?’ is closed to new replies.