【问题标题】:.htaccess forward domain except some directories.htaccess 转发域,除了一些目录
【发布时间】:2015-03-28 16:02:59
【问题描述】:

我想将 mydomain.com 的几乎所有内容转发到 mydomain.somewhereelse.com 但我希望 www.mydomain.com/mail 和 www.mydomain.com/stats 不会转发到新地址。

我应该怎么做?是否有 IF ELSE 解决方案?

RewriteEngine On
RewriteBase /
RewriteRule ^mail squirrelmail/src/login.php [R,NC]
RewriteRule  ^(.*)  http://new.example.com/$1

以上不起作用。

【问题讨论】:

    标签: apache .htaccess mod-rewrite forward


    【解决方案1】:

    您可以将此规则用作RewriteBase 行下方的第一条规则:

    RewriteCond %{HTTP_HOST} ^(www\.)?mydomain\.com$ [NC]
    RewriteRule !^(mail|stats) http://mydomain.somewhereelse.com%{REQUEST_URI} [L,NC,R=302]
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2012-05-08
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多