可以使用指向站点URL的预定义常量。
(来自Codex)
define(\'WP_SITEURL\', \'http://example.com/wordpress\');
define(\'WP_HOME\', \'http://example.com/wordpress\');
小示例
define(\'WP_SITEURL\', \'http://\'.$_SERVER[\'HTTP_HOST\']);
define(\'WP_HOME\', \'http://\'.$_SERVER[\'HTTP_HOST\']);