[ad_1]
Plugin Support
bruceallen
(@bruceallen)
Happiness Engineer
Hi @willthing
What’s happening here is that Bitnami/AWS’s default wp-config.php is causing URLs on our side to flip between the IP address and the site URL.
You should see the below in wp-config.php:
define('WP_SITEURL', 'http://' . $_SERVER['HTTP_HOST'] . '/');
define('WP_HOME', 'http://' . $_SERVER['HTTP_HOST'] . '/');
You would **replace** that with:
define('WP_SITEURL', 'https://www.YOURDOMAINHERE.com');
define('WP_HOME', 'https://www.YOURDOMAINHERE.com');
Once you’ve saved the change to wp-config.php, your site should stop flipping between the two URLs.
Bruce,
Thanks so much for the time and feedback. I’ll give that an update.
Will
