是否可以从其他服务器托管WordPress数据库

我有一个问题是, 我必须托管其他服务器上的wordpress数据库, 而我的域链接到另一台服务器上的目录, 因此可以将wordpress目录与不在同一服务器上的其他数据库连接起来, 请解决我的问题知道答案。提前致谢。
#1是的, 只要MySQL服务器允许外部服务器访问该数据库即可。设置WP时, 你将放置在SQL Server中, 而不是” localhost” 。
【是否可以从其他服务器托管WordPress数据库】你可以导出当前数据库, 然后在另一台服务器上创建数据库,
然后将放置服务器的IP地址, 而不是” localhost” (在config.php中), 然后config.php将进行连接

// wp-config.phpdefine ( 'DB_NAME', 'yourdbname' ); define ( 'DB_USER', 'yourusername' ); define ( 'DB_PASSWORD', 'yourpassword' ); define ( 'DB_HOST', '111.222.0.1' ); // IP address of the server where MySQL is running // make sure MySQL server will listen to the request from your WP server IP !

https://forums.digitalpoint.com/threads/can-i-host-wordpress-database-in-an-other-server.2702115/
#2在config.php文件中, 你只需放置数据库存在的其他服务器的IP地址, 而不是localhost。但是请记住, 分别运行数据库和源文件不是一个好主意, 这会让你遇到麻烦, 有关更多信息, 请查看以下链接。感谢你的合作。
https://forums.digitalpoint.com/threads/can-i-host-wordpress-database-in-an-other-server.2702115/

    推荐阅读