Contrary to jpm123’s advice (though it was given in good faith), I would advise not using the “Edit wp-config.php” method. As the Codex page states, this hardcodes the values into the site and disables the backend settings page. This may create more complications later on.
Use the “Edit functions.php” method instead. This involves the following steps:
(1) Access your site using FTP, then go to /wp/themes/bizznis
.
(2) Download the functions.php
file, open it in a text editor, and add these as new lines:
update_option( 'siteurl', 'https://www.centraliahighalumni.com/Home' );
update_option( 'home', 'https://www.centraliahighalumni.com/Home' );
(3) Re-upload the edited functions.php
file.
(4) If that fixes the errors, you should now remove the lines added at step 2.
In addition, I assume you will want to know how to achieve what you were trying to do: i.e. remove /Home
from the URL. You can do that by following the instructions on this page (under “Using a pre-existing subdirectory install”).