我做不正确的重排。我需要重定向:
subdomain.example.com/specific-page
至
example.com/specific-page
我做了以下事情:
RewriteCond %{HTTP_HOST} ^subdomain\.example\.com/specific-page/$ [NC]
RewriteRule ^(.*)$ https://www.example.com/specific-page/$1 [L,NC,R=302]
显然,这是错误的。
答案 0 :(得分:0)
您可以使用:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^subdomain\.example\.com$ [NC]
RewriteRule ^specific-page/(.*)$ https://www.example.com/specific-page/$1 [L,NC,R=302]