有两种方式可以查看网站URL。
仪表板中的在wp-config.php
文件在functions.php
文件如果无法更改上述选项1,则不应在PhpMyAdmin中编辑该表。在wp config中检查以下内容。php:
define( \'WP_HOME\', \'http://example.com\' );
define( \'WP_SITEURL\', \'http://example.com\' );
如果找不到,请签入函数。php用于:
update_option( \'siteurl\', \'http://example.com\' );
update_option( \'home\', \'http://example.com\' );
你可以阅读更多
here