“The page isn’t redirecting properly”
-
Hello,
I was attempting to make the “home” page accessible from the domain root without having to do /home, I did this by selecting customize > homepage settings and selecting “A static page” with “Home” selected under the “Homepage” dropdown, doing so is causing firefox to display “The page isn’t redirecting properly”, note that the site still works fine from /home or /contact-us.
Some background to the website configuration, this is a fresh install of the latest WordPress version running on debian 10, the site sits behind a reverse proxy which serves the SSL, SSL was acheived behind the reverse proxy by adding the following to the top of the wp-config file:
define('FORCE_SSL_ADMIN', true); if ($_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https') $_SERVER['HTTPS']='on';
and this to the bottom
define('WP_HOME','https://t43.digital'); define('WP_SITEURL','https://t43.digital');
as well as this to the Nginx virtualhost file in the location / {} block right below proxy_pass
proxy_set_header X-Forwarded-Proto https;
initial configuration was met with some mixed content errors, “SSL Insecure Content Fixer” by WebAware was used to fix the mixed content errors, but of note, the website was responsive on [ redundant link removed ] as a “your latest posts” page, none of this particular error came into effect until changing it to be static of the “home” page, which does load fine when going to /home.
what steps should I take next? basic googling has had me ensure WordPress is serving HTTPS in its general settings, and it in fact is, both domains in general settings match, and I didn’t come across anything else documented that could feasibly be my issue, any help much appreciated!
- This topic was modified 4 years, 4 months ago by . Reason: Moved to Fixing WordPress, this is not an Everything else WordPress topic
The page I need help with: [log in to see the link]
- The topic ‘“The page isn’t redirecting properly”’ is closed to new replies.