Hello again codathon67,
Most hosts offer phpMyAdmin for working with your MySQL databases. You’ll want to follow the steps here for locating the siteurl and home fields in your wp_options:
https://codex.www.ads-software.com/Changing_The_Site_URL#Changing_the_URL_directly_in_the_database
Make sure your Site URL is set correctly in both of those fields. If it isn’t, using the instructions in the link above, change the fields accordingly.
Next, double check your wp-config.php file for anything similar to:
define('WP_HOME','https://example.com');
define('WP_SITEURL','https://example.com');
If you previously changed the site URL through wp-config.php, either remove the change or correct it accordingly.
Finally, check your functions.php file for code similar to:
update_option('siteurl','https://example.com/blog');
update_option('home','https://example.com/blog');
Once again, if you previously changed your site URL through the functions.php file, either remove the change or correct it accordingly.
Hope this helps!