我需要一种方法来重定向所有且仅以文件夹开头的 URL:“home/”和“car/”,从 example.com 到 jp.example.com。
例如:
example.com/home/test.html ---> jp.example.com/home/test.html
example.com/car/test.html ---> jp.example.com/car/test.html
jp.example.com/home/second-test.html ---> jp.example.com/home/second-test.html
jp.example.com/third-test.html ---> example.com/third-test.html
我正在使用这段代码:
RewriteEngine on
RewriteCond %{HTTP_HOST} !^jp.example.com$
RewriteRule ^(.*)$ http://jp.example.com/$1 [R=301]
但它不起作用,因为它将所有 url 从 example.com 重写为 jp.example.com