最近、ワードプレスサイトの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');
他に欠けているテーブル、列はありますか?
私は以下のアップデートを再実行しました、そして今私のリンクは働きます!
update wp_posts set post_content = REPLACE(post_content, 'http://domain.com/wp', 'http://domain.com/blog');