WordPress
Migration de site
Recherche…
Syntaxe
- OLD_SITE - L'ancien site en cours de migration (par exemple: http: // localhost / example)
- NEW_SITE - Le nouveau site vers lequel migrer (ex: https://example.com
Mise à jour des tables avec une nouvelle 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
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow