我想通过重定向将我网站的所有页面重定向到一个新域。我已经设法让它在域级别上工作,但不是在子页面上。
所以 olddomain.com 重定向到 newdomain.com 但 olddomain.com/contact 不会重定向到 newdomain.com。它仍然显示旧域。
我使用了多个重写规则,但它们似乎都不起作用。任何帮助深表感谢。
这是我现在在 .htaccess 文件中使用的代码
# 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]