If you move your site from your developmental domain to your clients domain, you will need to do a bit of housework on the database, fix the URLs for the GUID (globally unique identifier) field in wp_posts table. This is important as the GUID is used to translate your post or page slug to the correct article absolute path if it is entered wrongly.
UPDATE wp_posts SET guid = REPLACE (guid, 'http://www.development.com', 'http://www.client.com');
Leave a Reply
Want to join the discussion?Feel free to contribute!