• Hi, the WordPress version of my site won’t load. It returns this message;
    This page isn’t working
    Host: soccerzar.co.za

    Error Code: net::ERR_TOO_MANY_REDIRECTS

    My site, Soccerzar.co.za loads but the WordPress version of it, soccerzar.co.za/wp-admin won’t load. I can’t add new posts/articles. 🥺

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hi,

    We checked the redirect using https://www.redirect-checker.org/index.php and your admin page loads from HTTP to HTTPS over and over. Check your database URL if it matches, I recommend using HTTPS on the URL outright. Try to use default .htaccess file too before checking your admin page:

    # BEGIN WordPress
    
    RewriteEngine On
    RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    
    # END WordPress
Viewing 1 replies (of 1 total)
  • The topic ‘Soccerzar.co.za/wp-admin won’t load’ is closed to new replies.