• johnnywhee

    (@johnnywhee)


    Hi – recently installed Redirection plugin. Now I can no longer log in. I checked logs via phpmyadmin and it shows requests to sitename.com/wp-admin/ are being redirected to sitename

    I checked through the items section and that redirection isn’t there.

    I checked .htaccess and all it has is:
    # BEGIN WordPress

    # END WordPress

    http://wordpress.org/extend/plugins/redirection/

Viewing 1 replies (of 1 total)
  • Thread Starter johnnywhee

    (@johnnywhee)

    Ok – that was an easy fix – anyone with this issue should add the following to .htaccesss

    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ – [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin:Redirection] wp-admin redirecting to home page’ is closed to new replies.