Https://programesecure.com/wp-login.php

This page isn’t working

programesecure.com redirected you too many times. Try clearing your cookies. ERR_TOO_MANY_REDIRECTS

when i am trying to open , https://programescure.com or Https://programesecure.com/wp-login.php

please help me to solve this problem

@Anurag_Chatap

I can see that http redirecting to https which is expected, but from https:// it’s again redirecting to https:// itself. So have a look into following things,

  • /etc/nginx/conf.d/force-ssl-sitename.com.conf and check the redirection is right.

  • . let me know if you have made any custom configurations in nginx. Or paste all the nginx configuration

  • check wp-config.php and confirm HOME_URL & SITE_URL have https://

    listen 80;
    server_name www.programesecure.com programesecure.com;
    return 301 https://programesecure.com$request_uri;

}

server { listen 80; server_name www.programesecure.com programesecure.com; return 301 https://programesecure.com$request_uri; }