2012-03-10 39 views
0

当我尝试重定向像这样,它不工作,它不重定向。简单的重定向与查询不起作用

Redirect 301 http://site.domain/file.php?query=q http://anothersite.domain/something.php 

但没有查询它的作品,我想知道为什么?我想根据查询重定向。

Redirect 301 http://site.domain/file.php http://anothersite.domain/something.php 

回答

2

有没有办法做到这一点使用Redirect你必须使用RewriteRule

RewriteCond %{QUERY_STRING} ^query=q$ [NC] 
RewriteRule ^file\.php$ http://anothersite.domain/something.php [R=301,L] 

用于发送查询字符串使用QSA标志。