Files
podman/changeurl.sql
2024-11-20 12:01:52 +01:00

6 lines
383 B
SQL

SET @old_URL = 'https://www.landleben-linum.de';
SET @new_URL = 'http://localhost:8080';
UPDATE wp_options SET option_value = replace(option_value, @old_URL, @new_URL) WHERE option_name = 'home' OR option_name = 'siteurl';
UPDATE wp_posts SET guid = replace(guid, @old_URL, @new_URL);
UPDATE wp_posts SET post_content = replace(post_content, @old_URL, @new_URL);