【问题标题】:Redirection for a specific page of a specific domain in multi-domain htaccess多域htaccess中特定域的特定页面的重定向
【发布时间】:2018-02-14 20:48:25
【问题描述】:

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

我想从 mydomain.de/page1 重定向到 mydomain.de/page2 但如果要保留 mydomain.com/page1mydomain.fr/page1 等(不重定向具有相同路径名的其他域。

这可能吗?

【问题讨论】:

    标签: .htaccess


    【解决方案1】:

    好的,我找到了:

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

    Test here

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2017-08-16
      • 1970-01-01
      • 2014-08-13
      • 1970-01-01
      • 2017-12-26
      • 2010-12-06
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多