@jato You need to manually define your WordPress Address and Site Address. You have 2 options: Change them via phpMyAdmin or via wp-config.php
To change them via phpMyAdmin.
Access your Hosting Manager.
On the Home page, click Databases or the [ v ] arrow symbol.
Then, click the phpMyAdmin option.
On phpMyAdmin interface, select the database to manage on the left side panel.
Under Table column, select wp_options from the list.
Under option_name column, look for siteurl, and click Edit on its far left corner.
Enter your new URL in option_value.
Click the Go button.
Go back to option_name, look for home, and click Edit on its far left corner. Enter your new URL in option_value. Then, click Go
When using the above method you have update the database and no further action will be required.
Change URL via WP-config.php
Here’s a step-by-step guide to change them via wp-config.php file.
Access your Hosting Manager.
On the Home page, click Files icon, or the [ v ] arrow symbol. Then, click Files Manager option.
Select the public_html folder, then right click on wp-config.php file and click on Edit option.
A code editor will display, just click Edit.
Insert the following lines just before /* That’s all, stop editing! Happy publishing. */ (of course be sure to update the URL to your correct URL)
define( 'WP_HOME', 'https://correcturl.com' );
define( 'WP_SITEURL', 'https://correcturl.com' );
You can also use FTP with this method by downloading wp-config.php, edit it and then upload it.
When using the above method you have not updated the database and should be sure to update the addresses via General Settings.