WordPress - moving from one host to another

前端 未结 6 1509
走了就别回头了
走了就别回头了 2020-12-11 14:11

I am trying to move a WordPress installation from one server to another one, including all of the SQL data, and the file-system data (photos,template files).

I just

6条回答
  •  醉梦人生
    2020-12-11 14:48

    Edit 5/16/2015

    It's much better to use interconnectit.com WordPress Serialized PHP Search Replace Tool to find/replace URLs in the database and to correctly deserialize/reserialize that data. Doing a find/replace in a text dump or with the UPDATE queries below will break serialized data.


    Several easy ways: How to Move WordPress Blog to New Domain or Location » My Digital Life:

    UPDATE wp_options SET option_value = replace(option_value, 
    'http://www.old-domain.com', 'http://www.new-domain.com')
     WHERE option_name = 'home' OR option_name = 'siteurl';
    

    and others: How to Find and Replace Text in WordPress MySQL Database using SQL When Changing Domains » My Digital Life

    Search RegEx « WordPress Plugins for grepping through posts and pages as a WP plugin-based way to replace image and other URLs in posts and pages.

    And there's Moving WordPress « WordPress Codex.

提交回复
热议问题