• I’ve tried looking all over for a solution to this and can’t find one. When I try and access my admin page it redirects me to my main blog. From what I can find, this is an issue with my .htaccess file, but I can’t find a way to fix it.

    Anyone? Thanks for the help.

Viewing 2 replies - 1 through 2 (of 2 total)
  • yes i have the same problem

    Hi,

    Remove all the code from htaccess and add this code:

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

    Also disable all the plugins and change your theme to default to rules out theme level issue.

    Thanks,

    Shane G.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘wp-admin redirects to main site’ is closed to new replies.