WordPress 호스트를 변경하거나 서비스 경로를 바꿨을 때 리소스 참조가 제대로 안 되는 문제가 발생할 수 있다. 이때에는 과감하게 DB를 건드리면 된다.
WordPress 서비스 경로를 note.tbig.ml
에서 bips.ml/note
로 변경한 경우,
아래 SQL로 wp_posts
테이블의 post_content
컬럼에 기존 경로로 기입돼 있는 URL을 전부 변경한다.
update wp_posts
set post_content = replace(post_content,'note.tbig.ml/wp-content/uploads','bips.ml/note/wp-content/uploads')
where post_content like '%note.tbig.ml/wp-content/uploads%';
commit;