• Resolved jkmuller

    (@jkmuller)


    After adding a page to my wordpress site, the home page is suddenly redirecting to either http://www.enlightenedmarketing.com/tap-into-your-genius/genius/ or http://www.enlightenedmarketing.com/genius/. That page seems to be in an infinite loop for some reason. I can’t see anything strange in my .htaccess file, but I wanted to include it in case someone did.

    DirectoryIndex index.php index.php3 messagebrd.pl index.html index.htm
    
    RewriteEngine On
    
    RewriteCond %{HTTP_HOST} ^enlightenedmarketing.com [NC]
    RewriteRule ^(.*)$ http://www.enlightenedmarketing.com/$1 [L,R=301]
    
    RewriteCond %{HTTP_HOST} ^.*$
    RewriteRule ^blog/?$ "http\:\/\/blog\.enlightenedmarketing\.com" [R=301,L]
    
    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    
    # END WordPress

Viewing 4 replies - 1 through 4 (of 4 total)
  • Moderator James Huff

    (@macmanx)

    Try decativating all plugins. If that resolves the issue, reactivate each one individually until you find the cause.

    If that does not resolve the issue, try switching to the Default theme (WordPress 2.9) or the Twenty Ten theme (WordPress 3.0) to rule-out a theme-specific issue.

    Thread Starter jkmuller

    (@jkmuller)

    Thanks MacManX. A plugin does seem to be the issue here, although I can’t understand why it would be doing that. I’ve disabled Redirection for the time being. I will update if I figure out how to fix it with the plugin enabled.

    Thread Starter jkmuller

    (@jkmuller)

    All resolved now–I had to go into PHPmyAdmin and delete some lines from the Redirection database manually. Strangely, they weren’t showing up on the plugin page, but there were four redirects right there in the plugin.

    Moderator James Huff

    (@macmanx)

    You’re welcome! I’m glad you were able to find a solution. According to the plugin’s page, 30 out of 42 users say that it’s broken under WP 3.0, so I imagine that this issue was probably related.

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Infinite redirect issue’ is closed to new replies.