Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想重定向所有域join.domain.com,signup.domain.com包括所有 URI 参数。
join.domain.com
signup.domain.com
我不太确定从哪里开始,因为这应该是涵盖我服务器上所有 join.* 域的一条规则。
RewriteEngine On RewriteCondition %{http_host} ^join$ [NC] RewriteRule ^(.*)$ http://signup.$1/$ [R=301,L]
试试他的规则:
RewriteEngine On RewriteCondition %{HTTP_HOST} ^join\.(.+)$ [NC] RewriteRule ^(.*)$ http://signup.%1/$1 [R=301,L]