您是否尝试过编辑wp配置。php?如果不是,请尝试添加或替换此值:
// DOMAIN & URL
define(\'PROTOCOL\', \'http://\');
define(\'DOMAIN_NAME\', \'domain.tld\');
define(\'WP_SITEURL\', PROTOCOL . DOMAIN_NAME);
define(\'PATH_TO_WP\', \'/\'); // if your WordPress is in a subdirectory.
define(\'WP_HOME\', WP_SITEURL . PATH_TO_WP); // root of your WordPress install
The
wp-config.php 位于
root 您的
project directory 默认情况下。
Here 是
wordpress documentation. 希望这有帮助。