Host the wp-admin on another domain?

Easy solution would be adding this line to your wp-config.php of your admin server code.

define( ‘WP_SITEURL’, ‘http://’ . $_SERVER[‘SERVER_NAME’]);

Then you can access it without modifying the database option.

Leave a Comment