wordpress配置前后台不同的域名
前台域名:http://example.com
后台域名:https://admin.example.com/
define('WP_SITEURL', 'http://' . $_SERVER['HTTP_HOST']);
define('WP_HOME', 'http://example.com');
if (strpos($_SERVER['HTTP_HOST'], 'admin.example.com') !== false) {
define('FORCE_SSL_ADMIN', true);
}