我在重定向方面遇到了一些麻烦
我想重定向来自
的每个传入流量http://domain.com/?friends=7来 http://domain.com/win
我正在使用此规则,但它似乎无效。
P:\CLIENTS\A-TO-B\
P:\CLIENTS\A-TO-B\
P:\CLIENTS\c-TO-d\
答案 0 :(得分:1)
您无法捕获RewriteRule
的查询字符串,您需要使用RewriteCond
执行此任务:
RewriteBase /
RewriteCond %{QUERY_STRING} ^friends=7$
RewriteRule ^$ /win? [L,R=301]
您可以使用this tool
测试RewriteRule