ServerAlias域名重定向

时间:2015-12-22 12:48:26

标签: apache .htaccess redirect vhosts

我在一个vhost

中有两个不同的域名
<VirtualHost *:7080>
ServerName www.example.com
ServerAlias www.ex2.com
DocumentRoot /web/domain
</VirtualHost>

我需要在不影响www.example.com的情况下为www.ex2.com添加重写规则:

RewriteRule "^/home.html$" "/index.html" [R=301,L]

将www.ex2.com/home.html重定向到www.ex2.com/index.html

如何编写仅适用于ServerAlias www.ex2.com但不影响www.example.com/home.html页面的重写规则?

1 个答案:

答案 0 :(得分:0)

使用RewriteCond %{HTTP_HOST} =www.ex3.com在新规则之前将其限制为您的部分。

相关问题