WordPress incorrectly redirects to local IP address?
Change the Site URL in Options Table. UPDATE `wp_options` SET `option_value` = ‘YOUR_SITE_URL’ WHERE `option_name` = ‘siteurl’ OR `option_name` = ‘home’; Also change the static URLs in your post content. UPDATE `wp_posts` SET `post_content` = REPLACE(post_content, ‘192.168.0.18/YOUR_LOCAL_SITE_URL/’, ‘YOUR_SITE_URL/’); Don’t forget to change the table prefix if its not ‘wp_’. Edit : Access PHPMyAdmin of your … Read more