htaccess / mod_rewrite不起作用

时间:2010-01-21 00:40:08

标签: apache .htaccess mod-rewrite

我试过这个,但它似乎不起作用:

RewriteCond %{QUERY_STRING} ^?var=10&view=3$

RewriteRule ^/index.php$ http://www.domain.com/index.php?var=11&view=1 [L,R=301]

1 个答案:

答案 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中是不必要的。