【发布时间】:2016-06-22 20:10:45
【问题描述】:
我有这个问题。我们已将域 example.com 重定向到 hello.anotherdomain.com。 重定向工作正常。 在 wordpress 中,我们在 hello.anotherdomain.com 中的 WP_OPTIONS 表中的 DB 上用 example.com 更改了 SiteUrl 和 Home 的值。
【问题讨论】:
标签: php wordpress redirect dns
我有这个问题。我们已将域 example.com 重定向到 hello.anotherdomain.com。 重定向工作正常。 在 wordpress 中,我们在 hello.anotherdomain.com 中的 WP_OPTIONS 表中的 DB 上用 example.com 更改了 SiteUrl 和 Home 的值。
【问题讨论】:
标签: php wordpress redirect dns
将此行添加到您网站根文件夹中的 wp-config.php 文件中
define('WP_HOME','hello.anotherdomain.com');
define('WP_SITEURL','hello.anotherdomain.com');
【讨论】: