I want to redirect all the pages of my website to a new domain with a redirect. I’ve managed to get it working on domain level but not on the subpages.
So olddomain.com redirects to newdomain.com but olddomain.com/contact doesn’t redirect to newdomain.com. It still shows the old domain.
I’ve used multiple rewrites rules but none of them seem to works. Any help is much appreciated.
This is the code that I’m using right now in my .htaccess file
# 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
RewriteCond %{HTTP_HOST} ^racentegenkanker.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.racentegenkanker.com$
RewriteRule ^(.*)$ "http://againstcancer.nl/$1" [R=301,L]
For a full website redirection, you can use this (entire) .htaccess :
EDIT
For two domains running side by side, with one redirecting the other :