티스토리 뷰

목표 = 사이트 이전 + /wp 경로를 / 로 이전

웹 = 압축하여 FTP로 전송시키고 이전 서버에 압축 해제

DB = MySQL Workbench > Navigator > Management > Data Export 로 내보내고 이전서버에 Data Import/Restore 로 복원

컨텐츠 =

SET SQL_SAFE_UPDATES=0;

# 사이트 기본 경로 설정
update wp_options set option_value='http://{도메인}' where option_name='siteurl';
update wp_options set option_value='http://{도메인}' where option_name='home';

# 컨텐츠 도메인 클리어
update wp_posts set post_content=replace(post_content,'http://{도메인}','') where post_content like '%http://{도메인}%';
update wp_postmeta set meta_value=replace(meta_value,'http://{도메인}','') where meta_value like '%http://{도메인}%';

# 컨텐츠 경로 업데이트
update wp_posts set post_content=replace(post_content,'/{경로}/','/') where post_content like '%/{경로}/%';
update wp_postmeta set meta_value=replace(meta_value,'/{경로}/','/') where meta_value like '%/{경로}/%';

템플릿 =

SELECT * FROM wp_options where option_name in ('template','stylesheet');

/wp-content/themes/{템플릿}/*
파일들에 대해 경로수정

댓글