我在一个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
页面的重写规则?
答案 0 :(得分:0)
使用RewriteCond %{HTTP_HOST} =www.ex3.com
在新规则之前将其限制为您的部分。