I'm going to show you how to change the base URL of your wordpress.
First of all, you need to access your database and to run these commands:
use <put_here_the_name_of_your_database>; select * from wp_options;
You will see lots of lines, we will change the lines with the column 'option_name' equals 'siteurl' and 'home'
In order to do that, run the next two commands with the new URL:
UPDATE wp_options SET option_value='http://newurl.com' WHERE option_name='siteurl'; UPDATE wp_options SET option_value='http://newurl.com' WHERE option_name='home';
After that, run again the select command to check if it is OK:
select * from wp_options;
That's all,
Best regards,
Adriano Schmidt
Nenhum comentário:
Postar um comentário