在多域htaccess中重定向特定域的特定页面

时间:2018-02-14 06:32:22

标签: .htaccess

我的网站配置为针对不同语言在不同的域上工作,因此我有一个htaccess来管理所有内容。

我想从 mydomain.de/page1 重定向到 mydomain.de/page2 ,但是要保留 mydomain.com/page1 mydomain.fr/page1 等原样(对于具有相同路径名的其他域没有重定向。

这可能吗?

1 个答案:

答案 0 :(得分:0)

好吧,我找到了:

RewriteCond %{HTTP_HOST} ^www\.mydomain\.de$ [NC]
RewriteCond %{REQUEST_URI} ^/page1 [NC]
RewriteRule ^(.*) https://www.mydomain.de/page2 [R=301,L]

Test here

相关问题