WordPress
Sitemigratie
Zoeken…
Syntaxis
- OLD_SITE - De oude site die wordt gemigreerd (bijvoorbeeld: http: // localhost / voorbeeld)
- NEW_SITE - De nieuwe site waarnaar u wilt migreren (bijvoorbeeld: https://example.com
De tabellen bijwerken met een nieuwe URL
UPDATE wp_options SET option_value = replace(option_value, 'OLD_SITE, 'NEW_SITE') WHERE option_name = 'home' OR option_name = 'siteurl';
UPDATE wp_posts SET guid = replace(guid, 'OLD_SITE','NEW_SITE');
UPDATE wp_posts SET post_content = replace(post_content, 'OLD_SITE', 'NEW_SITE');
Modified text is an extract of the original Stack Overflow Documentation
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow