I'm back on some Wordpress projets, and I finished a test site using a local ".test" url. So I decided to make it online on : http://example.com
I changed my wp-config.php with OVH data, the database connection is OK. I also changed in phpMyAdmin the old url to the new url.
But Css files trying to load with the following url :
http://example.com/:/example.com/wp-includes/js/wp-emoji-release.min.js?ver=5.4.2
I can't make it work properly, do I have to do something else ? I think I followed every steps. I juste bough OVH domain this morning, maybe I have to wait more ?
My .htaccess :
# BEGIN WordPress
# Les directives (lignes) entre 'BEGIN WordPress' et 'END WordPress' sont
# généré dynamiquement, et ne doivent uniquement être modifiées via les filtres WordPress.
# Toute modification des directives entre ces marqueurs sera outrepassée.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
Thanks !