Reputation: 345
I made a mistake in my wordpress website, indeed I changed the url in the general panel. I changed from a .com website to a .fr website without buying the domain name before. And now I can not access to my website and got this error : DNS_PROBE_FINISHED_NXDOMAIN
How can I fixed it ?
thanks
Upvotes: 0
Views: 371
Reputation: 739
To fix this you can either set the following to wp-config.php
define('WP_HOME','http://example.com');
define('WP_SITEURL','http://example.com');
Or in your wp-options table change the values of siteurl AND home using phpmyadmin
Upvotes: 1
Reputation: 727
look here, you have to change the url manually:
https://codex.wordpress.org/Changing_The_Site_URL
Edit wp-config.php
define('WP_HOME','http://example.com');
define('WP_SITEURL','http://example.com');
Upvotes: 1
Reputation: 61
Add these in you wp-config.php file
define('WP_HOME','http://example.com');
define('WP_SITEURL','http://example.com');
Also you can change this in database table wp_options. in the columns siteurl and home
Upvotes: 1