Giải nén WordPress website A sửa thành website B

5
(1)

Muốn giải nén 1 website của domain khác là A và để thay thế cho 1 domain khác cụ thể là B
thì chú ý file wp-config.php phải trỏ đúng database

define( ‘WP_PLUGIN_DIR’, ‘/home/A.com/public_html/wp-content/plugins’ );
define( ‘WPMU_PLUGIN_DIR’, ‘/home/A.com/public_html/wp-content/mu-plugins’ );
—-> Sửa domain A thành B

ngoài ra trong database tìm đến wp-options sửa hết domain A thành B –> Chú ý dòng

recently_edited
siteurl
home

Tắt tất cả các plugin nếu sảy ra lỗi

wp_options –> active_plugins –> a:0:{}

Dưới đây là câu lệnh dùng cho phpmyadmin nếu bí rồi thì mở SQL trong đó lên mà chạy thay thế

UPDATE wp_options SET option_value = REPLACE(option_value, ‘A.com’, ‘B.com’) WHERE option_value LIKE ‘A.com/%’;
UPDATE wp_posts SET post_content = REPLACE(post_content, ‘A.com’, ‘B.com’) WHERE post_content LIKE ‘A.com/%’;

How useful was this post?

Click on a star to rate it!

Average rating 5 / 5. Vote count: 1

No votes so far! Be the first to rate this post.

As you found this post useful...

Follow us on social media!

We are sorry that this post was not useful for you!

Let us improve this post!

Tell us how we can improve this post?

Để lại một bình luận

Email của bạn sẽ không được hiển thị công khai. Các trường bắt buộc được đánh dấu *

This site uses Akismet to reduce spam. Learn how your comment data is processed.