skip to Main Content

I am using WordPress and with cPanel acting as my backend.

The redirect tool in cPanel provides a way to do this. But when I do it and refresh my website, it goes into a redirect loop saying it “redirects too much” or something to that effect.

EDIT: More Info

cPanel has no redirection entries at the moment. WordPress General -> URL says that the website is on http. However, the browser when visiting the site says that its https.

2

Answers


  1. Have you tried General settings -> Site url?

    Login or Signup to reply.
  2. 1 Add this to your wp-config.php file

    define('WP_HOME','http://example.com');
    define('WP_SITEURL','http://example.com');
    define('FORCE_SSL_ADMIN', false);
    

    2 Check Settings -> General -> Site Adress ( URL ) change it if necessary to http://example.com

    3 If it still doesn’t work it is a setting in CPanel or your dns

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search