WP homepage and only the home page shows a 404 even after updating url in SQL

My YunoHost server

Hardware: AMD 64 rack.
YunoHost version: Latest stable I cannot access it now…
I have access to my server : Yes.
Are you in a special context, or did you perform some particular tweaking on your YunoHost instance ? : no

Description of my issue

After changing the URL https://easycomphost.nl/V1 to https://easycomphost.nl some parts broke as expected, so I changed the database setting according to these commands;


UPDATE wp_options SET option_value = replace(option_value, 'https://easycomphost.nl/V1', 'https://easycomphost.nl') WHERE option_name = 'home' OR option_name = 'siteurl';

UPDATE wp_posts SET guid = replace(guid, 'https://easycomphost.nl/V1', 'https://easycomphost.nl');

UPDATE wp_posts SET post_content = replace(post_content, 'https://easycomphost.nl/V1', 'https://easycomphost.nl');

But now the fun part; testing https://easycomphost.nl will still force me to V1, I tried the permalink trick but no luck either.

So if anyone can help me… Please!

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.