Hello @pll
It seems there's some miss-configuration on the hostname of that subdomain. That's why WP is building some URLs with weird names. Let's take a look to the hostnames saved on the database:
- Connect to the database (when prompted, use the same password you use to connect to the WP Admin dashboard):
/opt/bitnami/mysql/bin/mysql -uroot -p
- Run the queries below and share the output:
use bitnami_wordpress;
SELECT * FROM wp_options WHERE option_name='siteurl' OR option_name='home';
SELECT domain FROM wp_blogs;
SELECT domain FROM wp_site;
SELECT meta_value FROM wp_sitemeta WHERE meta_key='siteurl';
exit
Could you also share what value did you set on the /opt/bitnami/apps/wordpress/htdocs/wp-config.php file for the settings WP_SITEUR and WP_HOME?
Best Regards,
Juan Ariza
Was my answer helpful? Click on 