Wait, there is a display bug in my previous post. It’s not ” http://localhost/’ but only http://localhost/
Hi everyone,
I just found the solution to this problem.
You have to go to your database (phpMyAdmin) and find the wp_yoast_indexable table (replace “wp” by your table prefix). You will see in the permalink column that everything is localhost !
Go to the SQL menu and execute this SQL request (replace “wp” by your table prefix) :
`UPDATE wp_yoast_indexable SET permalink = REPLACE(permalink, ‘http://localhost/’, ‘www.yourlivesite.com/’);
By doing this, it fixed the problem by me. However, it will be great if Yoast resolve this issue in the next update.