Bài viết này thực hiện (hoặc lụm bài về đăng câu like từ các trang khác) bởi Việt Lâm Coder một YOUTUBER có tâm và đẹp trai siêu cấp vô địch zũ trụ.
Do you want to update URLs after moving your WordPress site? It can be quite painful to manually edit each post or page just to replace old URLs. In this article, we will show you how to easily update URLs when moving your WordPress site.
Step 1 : Login to your database
Step 2 : Select database -> SQL
Step 3 : Copy code below and
+ replace yourprefix_ to your database prefix
+ http://old-domain.com to your old domain
+ http://new-domain.com to your new domain
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
UPDATE `yourprefix_options` SET option_value = REPLACE(option_value, 'http://old-domain.com', 'http://new-domain.com'); UPDATE `yourprefix_postmeta` SET meta_value = REPLACE(meta_value, 'http://old-domain.com', 'http://new-domain.com'); UPDATE `yourprefix_posts` SET post_content = REPLACE(post_content, 'http://old-domain.com', 'http://new-domain.com'); UPDATE `yourprefix_posts` SET guid = REPLACE(guid, 'http://old-domain.com', 'http://new-domain.com'); |
Bài viết này thực hiện (hoặc lụm bài về đăng câu like từ các trang khác) bởi Việt Lâm Coder một YOUTUBER có tâm và đẹp trai siêu cấp vô địch zũ trụ.