I just migrated a Wordpress site from one domain (domain-old.com) to another (domain-new.com). The problem is that the homepage: domain-new.com is redirected to: domain-old.com
It only happens with the home page. The other pages like: domain-new.com/some-page
, domain-new.com/other-page
, etc. work fine.
What I did so far after migration of files and database:
define('DB_NAME',...)
, define('DB_USER', '...')
, define('DB_PASSWORD', '...')
and define('DB_HOST', '...')
to connect to the database define('WP_HOME','http://domain-new.com');
and define('WP_SITEURL','http://domain-new.com');
update_option ( 'siteurl', 'http://domain-new.com' );
and update_option ( 'home', 'http://domain-new.com' );
domain-old.com
and replace them with domain-new.com
I don't know what else can I do. I think the problem is in the htaccess, but in there I just have this:
# BEGIN WordPress
<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
I have no cache plugin enabled. What am I missing here?
Try clearing your cache, or flushing your dns.
If it is working fine in a different browser/incognito mode etc, then it will simply be a cache issue, in which case just wait it out for it to clear.