将WordPress移动到另一个主机

Posted

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.
  1. # Dev to Production
  2.  
  3. SET @uri_from = 'www.devurl.local';
  4. SET @uri_to = 'www.liveurl.net';
  5.  
  6. UPDATE wp_options SET `option_value` = REPLACE(`option_value`, @uri_from, @uri_to)
  7. WHERE `option_value` LIKE CONCAT( "%", @uri_from, "%" );
  8.  
  9. UPDATE wp_posts SET `guid` = REPLACE(`guid`, @uri_from, @uri_to);
  10.  
  11. UPDATE wp_posts SET `post_content` = REPLACE(`post_content`, @uri_from, @uri_to);
  12.  
  13. UPDATE wp_postmeta SET `meta_value` = REPLACE(`meta_value`, @uri_from, @uri_to);

以上是关于将WordPress移动到另一个主机的主要内容,如果未能解决你的问题,请参考以下文章

从一个片段移动到另一个片段时如何自动选择底部导航?

将 WAMP 和 Wordpress 移动到另一个驱动器

转移wordpress到另一台主机

如何将 WordPress 网页移至其他托管服务器?

onDetach()不要求从一个片段移动到另一个片段

设置onclick侦听器在android中无法从一个片段移动到另一个活动[重复]