使用参数从URL重定向到另一个站点

时间:2014-12-09 18:08:05

标签: .htaccess redirect

redirect /index.php?categoryID=647 http://other_site.ru/

这正是这个类别存储了对另一个站点的引用。在这种形式,不起作用。我怀疑问题是由于一个论点。怎么做正确的事情? 对不起英语不好(谷歌翻译)

1 个答案:

答案 0 :(得分:1)

您无法在重定向中与查询字符串进行匹配。您需要使用mod_rewrite并匹配%{QUERY_STRING}变量:

RewriteEngine On
RewriteCond %{QUERY_STRING} ^categoryID=647$
RewriteRule ^index\.php$ http://other_site.ru/? [L,R]