web-dev-qa-db-ja.com

データベース内の画像リンクを更新する

最近、ワードプレスサイトのURLを変更しましたが、一部の画像リンクが見つからないようです

Wp_postsテーブルのほとんどのリンクを更新できました

update wp_posts set guid = REPLACE(guid, 'domain.com/wp/', 'domain.com/blog/');
update wp_posts set post_content = REPLACE(post_content, 'domain.com/wp', 'domain.com/blog');

他に欠けているテーブル、列はありますか?

enter image description here

1
brentwpeterson

私は以下のアップデートを再実行しました、そして今私のリンクは働きます!

update wp_posts set post_content = REPLACE(post_content, 'http://domain.com/wp', 'http://domain.com/blog');
2
brentwpeterson