将WordPress移动到另一个主机 Posted 2021-02-25 tags: 篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将WordPress移动到另一个主机相关的知识,希望对你有一定的参考价值。 SQL query to update *wp_options* records that are specific to the host of a WordPress site. Run this query after copying the DB to another server (if this URL is different). Useful for deploying WordPress from a dev server to a live environment.# Dev to Production SET @uri_from = 'www.devurl.local';SET @uri_to = 'www.liveurl.net'; UPDATE wp_options SET `option_value` = REPLACE(`option_value`, @uri_from, @uri_to) WHERE `option_value` LIKE CONCAT( "%", @uri_from, "%" ); UPDATE wp_posts SET `guid` = REPLACE(`guid`, @uri_from, @uri_to); UPDATE wp_posts SET `post_content` = REPLACE(`post_content`, @uri_from, @uri_to); UPDATE wp_postmeta SET `meta_value` = REPLACE(`meta_value`, @uri_from, @uri_to);以上是关于将WordPress移动到另一个主机的主要内容,如果未能解决你的问题,请参考以下文章 从一个片段移动到另一个片段时如何自动选择底部导航? 将 WAMP 和 Wordpress 移动到另一个驱动器 转移wordpress到另一台主机 如何将 WordPress 网页移至其他托管服务器? onDetach()不要求从一个片段移动到另一个片段 设置onclick侦听器在android中无法从一个片段移动到另一个活动[重复]