• Hi,

    With most of our WordPress sites when we go to wp-admin and input our login it states that the page is on a ‘redirect loop’. Turns out we are logged in but we have to access the dashboard directly through the url or wp-admin/index.php and not simply the url followed by wp-admin.

Viewing 1 replies (of 1 total)
  • InterServer

    (@interservernet-web-hosting)

    This might be because of incorrect configuration of redirect rule in .htaccess file. Rename the current .htaccess file and create new one with the following contents.

    # 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

    You can refer the following WordPress page to configure .htaccess correctly.

    http://codex.wordpress.org/htaccess

    If still the issue persists please try after removing www prefix in Site URL & Home URL fields from wp_options table of the WordPress database.

Viewing 1 replies (of 1 total)

The topic ‘WP-admin redirect loop’ is closed to new replies.