我试过这个,但它似乎不起作用:
RewriteCond %{QUERY_STRING} ^?var=10&view=3$
RewriteRule ^/index.php$ http://www.domain.com/index.php?var=11&view=1 [L,R=301]
答案 0 :(得分:0)
RewriteCond %{QUERY_STRING} ^var=10&view=3$
RewriteRule ^index.php$ http://www.domain.com/index.php?var=11&view=1
参见common pitfalls(第2项),在.htaccess文件中,不需要前导“/”。还有,领先的“?”在RewriteCond中是不必要的。