migration - Transfer of wordpress site from one domain and server to another domain and server

admin2025-06-02  2

I have moved a wordpress site from one domain and server to another domain and server. Everything looks fine except all the links within the site are still pointing to the previous domain. Please let me know what went wrong with the transfer. I'll really be thankful for the kind response and help.

I have moved a wordpress site from one domain and server to another domain and server. Everything looks fine except all the links within the site are still pointing to the previous domain. Please let me know what went wrong with the transfer. I'll really be thankful for the kind response and help.

Share Improve this question asked Mar 25, 2013 at 16:44 user1666698user1666698 354 silver badges11 bronze badges
Add a comment  | 

2 Answers 2

Reset to default 2

Most probably, nothing went wrong, you just have to set some things to the new server.

Firstly, there are the home and site urls (to be found in the general settings).

Then, possible absolute links pointing to the old domain have to be adapted.

To change these links, you have to adapt the SQL table.

Update options (this can also be done via the general settings, as described above):

UPDATE wp_options
SET option_value = replace(option_value, 'http://old-domain', 'http://new-domain')
WHERE option_name = 'home' OR option_name = 'siteurl';

Update absolute links inside posts:

UPDATE wp_posts
SET post_content = replace(post_content, 'http://old-domain', 'http://new-domain');

You probably need to log into the admin portal (www.yoursite/wp-admin) and change the site's address under settings >> general >> wordpress address.

Hope that helps

转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1748807367a313884.html

最新回复(0)