htaccess使用包含数组的查询字符串重定向到其他域

时间:2018-12-11 16:04:39

标签: .htaccess redirect

我有这样的网址:

subdomain.domain.com/level1/level2?product_ids[]=1&product_ids=2&product_names[]=Something&product_names[]=Something+Else

我想将其重定向到新域并保留查询字符串,以便它应重定向到:

subdomain.domain2.com/level1/level2?product_ids[]=1&product_ids=2&product_names[]=Something&product_names[]=Something+Else

1 个答案:

答案 0 :(得分:0)

您可以使用此:

RewriteEngine on

RewriteCond %{HTTP_HOST} ^subdomain1\.com$ [NC]
RewriteRule ^level1/level2/?$ http://subdomain2.com%{REQUEST_URI} [NE,L,R=301]