我有两个旧域http://example1.com(英语)和http://example2.com(法语),并希望它们重定向到我的新域,例如:
此外,我想确保永久链接在重定向后也保持不变。
例如http://example1.com/test.html => http://newdomain.com/en/test.html
我的代码:
下面的代码无法维护永久链接,我也不确定如何在检查中添加法国域。
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP_HOST} ^example1.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.example1.com$
RewriteRule (.*)$ http://www.newdomain.com/en/$1 [R=301,L]
</IfModule>